gpt4 book ai didi

ruby - 如何使用 ssl 通过 smtp 使用 ruby​​ 发送邮件(不使用 rails,gmail 没有 TLS)

转载 作者:数据小太阳 更新时间:2023-10-29 06:44:03 26 4
gpt4 key购买 nike

我只想使用 SSL 通过 SMTP 从我的 ruby​​ 脚本发送电子邮件。

我只找到从 Rails 或使用 TLS 的 Gmail 执行此操作的示例。

我发现人们在谈论 ruby​​ 1.8.5 对 SMTPS 的支持,但是 libdoc没有提到它。

谁有在端口 465 上使用 SSL 通过 SMTP 发送邮件的示例?

ruby -v
ruby 1.8.7 (2008-08-11 patchlevel 72) [i486-linux]

最佳答案

我用下面的配置解决了这个问题:

config.action_mailer.perform_deliveries = true
config.action_mailer.raise_delivery_errors = false
config.action_mailer.delivery_method = :smtp
config.action_mailer.smtp_settings = {
:address => 'mail.domain.com',
:port => '465',
:domain => 'yourdomain.com',
:user_name => 'email@yourdomain.com',
:password => 'yourpassword',
:authentication => :login,
:ssl => true,
:openssl_verify_mode => 'none' #Use this because ssl is activated but we have no certificate installed. So clients need to confirm to use the untrusted url.
}

它对我来说效果很好。

关于ruby - 如何使用 ssl 通过 smtp 使用 ruby​​ 发送邮件(不使用 rails,gmail 没有 TLS),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/708858/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com