I have setup Sendgrid for my Heroku Account, but the logs show the following issue when the app tries to send mail:

Net::SMTPFatalError (550 Cannot receive from specified address <[the email address I specified in devise.rb using config.mailer_sender]>: Unauthenticated senders not allowed

My production.rb settings are:

  config.action_mailer.delivery_method = :smtp
  config.action_mailer.raise_delivery_errors = true
  config.action_mailer.perform_deliveries = true
  config.action_mailer.default_url_options = { :host => 'heroku.com' }

  config.action_mailer.smtp_settings = {
    address: "smtp.sendgrid.net",
    port: 587,
    authentication: "plain",
    user_name: ENV["my sendgrid username"],
    password: ENV["my sendgrid password"],
    domain: 'heroku.com'
  }

My Sendgrid password/username are obtained from Heroku using heroku config -long

Does anyone have any suggestion as to where the problem might lie? How can I grant the email address I have defined in config.mailer_sender authentication?

link|improve this question

67% accept rate
feedback

1 Answer

up vote 5 down vote accepted

Your user_name and password need to be the key names, not the values:

config.action_mailer.smtp_settings = {
    address: "smtp.sendgrid.net",
    port: 587,
    authentication: "plain",
    user_name: ENV["SENDGRID_USERNAME"],
    password: ENV["SENDGRID_PASSWORD"],
    domain: 'heroku.com'
  }

The idea being that you keep the configuration separate to your code.

link|improve this answer
Jeez. What a muppet. I've been staring at it for hours. Thanks a lot. – 1ndivisible Feb 9 at 16:39
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.