如何设置ASO服务器(Rails)的SMTP设置?

时间:2014-07-31 22:04:40

标签: ruby-on-rails email ssl actionmailer

我正在尝试使用我的电子邮件设置邮件程序,该电子邮件托管在 A Small Orange (asmallorange.com)上。我尝试过以下方法:

  • 每种可能的设置组合,包括SSL和不包含SSL
  • 搜索了ASO的论坛
  • 已联系客户支持

到目前为止没有运气。

配置为Gmail时效果非常好...... 所以问题很可能出在我的SMTP设置中。

这是我的代码的非SSL版本(在初始化程序中):

# setup_mail.rb

ActionMailer::Base.smtp_settings = {
address:              'mail.mydomain.co',
port:                 26,
user_name:            ENV["EMAIL_USERNAME"]
password:             ENV["EMAIL_PASSWORD"]
authentication:       :plain, # also tried :login and :cram_md5
enable_starttls_auto: false, # tried true, too  }

这是SSL版本:

# setup_mail.rb

ActionMailer::Base.smtp_settings = {
address:              'lagertha.asmallorange.com',
port:                 465,
user_name:            ENV["EMAIL_USERNAME"]
password:             ENV["EMAIL_PASSWORD"]
authentication:       :plain, # also tried :login and :cram_md5
enable_starttls_auto: false, # tried true, too  }

任何帮助都非常感谢!

0 个答案:

没有答案