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!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

How can I send emails with GMAIL?

Hi,
I have an email that I want to use to send emails (I used it in PHP - Laravel and it worked perfectly), but in APEX I can't send emails and as you can see this is my configuration (I don't know if I am missing something else):
image.pngBut I see that the mails stay in QUEUE:
image.pngThis is the PL/SQL block that I am using to check if sending a mail works or not:

begin


apex_mail.send


(p_to=>'cartechco2020@gmail.com',


p_from=>'edisonlopez1400@gmail.com',


p_subj=>'Welcome Emailer',


p_body=>'Welcome to Oracle Apex Sending Emailer Session');


APEX_MAIL.PUSH_QUEUE;


end;


/

Thx.

Comments

Post Details

Added on Nov 29 2021
7 comments
2,844 views