我将应用程序升级到rails3.1,现在我无法使用authsmtp服务发送邮件。
我之前使用gmail和rackspace邮件完成了此操作,没有任何问题,但我在authsmtp上一直被拒绝。
任何帮助:
配置:
ActionMailer::Base.delivery_method = :smtp
ActionMailer::Base.smtp_settings = {
:address => "mail.authsmtp.com",
:port => 25,
:domain => '<domain>',
:user_name => "<user>",
:password => "<password>",
:authentication => :login
}
这些确切的设置适用于rails 2.3
答案 0 :(得分:0)
这适用于我的Gmail:
config.action_mailer.smtp_settings = {
:address => "smtp.gmail.com",
:authentication => 'plain',
:domain => 'my_domain',
:enable_starttls_auto => true,
:password => 'my_password',
:port => 587,
:user_name => 'authorized_user'
}