mehmet6parmak
mehmet6parmak

Reputation: 4857

ORACLE Send Email using SSL

is it possible to send e-mail over ssl in plsql? thanks for helping.

Upvotes: 2

Views: 2847

Answers (2)

OMG Ponies
OMG Ponies

Reputation: 332731

Oracle's UTL_SMTP does not support SMTPS (SMTP over SSL) - you have to wrap the connection. See this link for a working, but not recommended for production use, example.

Upvotes: 1

ZeissS
ZeissS

Reputation: 12135

Not with pure PL/SQL afaik. We added some java classes to the database which performs the SSL mail sending with the java mail api.

Upvotes: 1

Related Questions