If you have your own sendgrid account, there's no point in even using
heroku's addon.
Just throw something like this in your environment.rb:
config.action_mailer.smtp_settings = {
:enable_starttls_auto => true,
:address => 'smtp.sendgrid.net',
:port => '587',
:authentication => :plain,
:user_name => SENDGRID_USER,
:password => SENDGRID_PW,
:domain => 'yourdomain.com'
}
On Nov 20, 10:25 pm, Barry Hoggard <[email protected]> wrote:
> Can I use my existing SendGrid account on Heroku? Would setting the
> environment variables in config/environment.rb override Heroku's
> version?
--
You received this message because you are subscribed to the Google Groups
"Heroku" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/heroku?hl=en.