我正在尝试使用我的电子邮件设置邮件程序,该电子邮件托管在 A Small Orange (asmallorange.com)上。我尝试过以下方法:
到目前为止没有运气。
配置为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 }
任何帮助都非常感谢!