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 <ba...@tristanmedia.com> 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 her...@googlegroups.com.
To unsubscribe from this group, send email to 
heroku+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en.

Reply via email to