Skip to Main Content

APEX

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
1,819 views