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.
