I'm experimenting on a small workspace on apex.oracle.com, and since a couple of days I'm unable to send any mail using the APEX_MAIL package. Is there any change in version 22.1, or limitation sending emails ?
This simple plsql block does not send (it was working one week ago)...
begin
apex_mail.send(p_from => '<my email address>',
p_to => '<my email address>',
p_replyto => '<my email address>',
p_subj => 'This is the subject of my mail',
p_body => 'test',
p_body_html => 'HTML test');
end;
Many thanks for your help.