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?