Hi All,
we have enabled SMTP services for Apex server.
we have tried triggering emails using below procedure and it worked
begin utl_mail.send(
sender => 'scott@tiger.com',
recipients => 'john@doe.org',
message => 'Hello World'
);
commit;
end;
But when we are trying to use below code we are facing we are facing this error : ORA-24250: No supported authentication scheme found
begin
apex_mail.send(p_to => 'scott@tiger.com',
p_from => 'scott@tiger.com',
p_body => 'Test Mail',
p_body_html => 'Test Mail',
p_subj => 'Test Mail',
p_cc => null,
p_bcc => NULL, p_replyto => NULL);
commit;
apex_mail.push_queue;
end;
We have give all permission which are required for apex_mail api
Can you please suggest some solution for this error.
Thanks,
Kiran