Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

apex_mail.send for external emails

Gor_MahiaMar 5 2014 — edited Mar 6 2014

All,

i am able to send emails with attachments internally(within my portal group) but i cant send emails to public accounts like hotmail, gmail,yahoo accounts,

How can i change this code so to send emails internally as well as externally?

i am using sample code below,

FOR r_member IN (SELECT unique c001 FROM apex_collections WHERE collection_name = 'SEND_MEMBERS') LOOP

apex_mail.send

(p_to => r_member.c001

,p_from => l_from

,p_body => l_body

,p_body_html => l_body_html

,p_subj => l_subj);

END LOOP;

-- push apex mail queue

apex_mail.push_queue;

. . . . . . .

thank you.

This post has been answered by Scott Wesley on Mar 5 2014
Jump to Answer

Comments

Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Apr 3 2014
Added on Mar 5 2014
2 comments
224 views