当前位置:  开发笔记 > 后端 > 正文

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

如何解决《如何使用ssl通过smtp发送带有ruby的邮件(不带有rails,没有用于gmail的TLS)》经验,为你挑选了1个好方法。

我想要的只是使用SSL通过SMTP发送来自我的ruby脚本的电子邮件.

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

我发现有人在讨论使用ruby 1.8.5的SMTPS支持,但是libdoc没有提到它.

是否有人通过端口465通过SMTP发送邮件的示例?

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

小智.. 10

我通过以下配置解决了这个问题:

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.
}

它对我很有用.



1> 小智..:

我通过以下配置解决了这个问题:

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.
}

它对我很有用.

推荐阅读
135369一生真爱_890
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有