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):
But I see that the mails stay in QUEUE:
This 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.