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.