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!

Send Email from APEX

Malek Shushari10 hours ago
I want to send an email from Oracle APEX.
I configured SMTP on APEX Instant with all the correct details.
Then I wrote the following PL/SQL code:

BEGIN
 APEX_MAIL.SEND(
   p_to   => 'your-email@example.com',
   p_from => 'test@yourdomain.com',
   p_subj => 'TEST',
   p_body => 'Test message'
 );
 APEX_MAIL.PUSH_QUEUE;
END;

However, when I execute the code, no error appears.

Comments
Post Details
Added 10 hours ago
3 comments
44 views