ORACLE 使用 SSL 发送电子邮件
是否可以在 plsql 中通过 ssl 发送电子邮件? 感谢您的帮助。
is it possible to send e-mail over ssl in plsql?
thanks for helping.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
是否可以在 plsql 中通过 ssl 发送电子邮件? 感谢您的帮助。
is it possible to send e-mail over ssl in plsql?
thanks for helping.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
显然,纯 PL/SQL 并非如此。我们向数据库添加了一些 java 类,用于使用 java 邮件 api 执行 SSL 邮件发送。
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.
Oracle 的 UTL_SMTP 不支持 SMTPS(基于 SSL 的 SMTP) - 您必须包装连接。请参阅 此链接,但不建议用于生产用途,例如。
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.