電子郵件現在從我的本地發送,但不會從我的郵箱發送。我返回了這個錯誤。任何人都知道這可能是什麼?設置sendgrid for rails..returning授權錯誤
的Net :: SMTPAuthenticationError(535 5.7.8錯誤:身份驗證失敗:驗證失敗 ):
我的環境/ production.rb
ActionMailer::Base.delivery_method = :smtp
ActionMailer::Base.smtp_settings = {
:address => "smtp.sendgrid.net",
:port => '25',
:domain => "mydomain.com",
:authentication => :plain,
:user_name => "[email protected]",
:password => "password1234"
}
/etc/ssmtp/ssmtp.conf:
root=postmaster
mailhub=smtp.sendgrid.net
[email protected]
AuthPass=password1234
AuthMethod=LOGIN
rewriteDomain=mydomain.com
FromLineOverride=YES
UseSTARTTLS=NO
那麼,你如何得到一個帳號配置的?不要只是說明問題,找到解決方案。 – JShoe 2013-06-28 21:56:33
下面介紹如何在heroku上配置您的帳戶:https://devcenter.heroku.com/articles/sendgrid#provisioning-the-add-on – lflores 2015-08-22 20:27:36