Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

ORA-24250: No supported authentication scheme found while using apex_mail api

Kiran KararlapudiSep 25 2019 — edited Sep 25 2019

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
Comments
Post Details
Added on Sep 25 2019
2 comments
303 views