Re: Can I use my own SendGrid credentials?

2010-11-22 Thread jetienne
Hi,

The best way is to change the Heroku config settings.
(heroku config -app your_app)

Regards,

On Nov 21, 4:25 am, 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.



Re: Can I use my own SendGrid credentials?

2010-11-22 Thread chris
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.



Can I use my own SendGrid credentials?

2010-11-21 Thread Barry Hoggard
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.