I'm trying to get sendgrid running on my Rails 3 App with Devise, so devise can send out registration emails etc..

I added the following, config/setup_mail.rb:

ActionMailer::Base.smtp_settings = {
  :address => "smtp.sendgrid.net",
  :port => '25',
  :domain => "XXXXXXXXX.com",
  :authentication => :plain,
  :user_name => "XXXXXXXXXXX@gmail.com",
  :password => "XXXXXXXXXX"
}

Shouldn't that be enough for Rails + Devise to send out registration emails? Or do I need something else or a gem of some kind?

The logs show the email being generated but I don't see anything in the log about MAIL being sent successfully or erroring. And my sendgrid account still says 0/200 emails sent.

Is there a better way in Rails to see what's going on when it trys to send the email?

Thanks

link|improve this question

70% accept rate
feedback

2 Answers

You can erase the setup that you have.

heroku addons:add sendgrid:free

That is the only pieces of code you need to get email configured with heroku.

Make sure you have your host link setup which I think you did because it will cause it to crash but if you haven't:

config.action_mailer.default_url_options = { :host => 'myapp.heroku.com' }

Actually this last lien is different on rails3 so watch out for that :)

The "config" line needs to be added to your "production.rb" file.

link|improve this answer
1  
the thing is I don't want to set it up with Heroku but rather go use sendgrig directly myself as I need it to work locally. – AnApprentice Nov 8 '10 at 5:42
always having to be special :). Sorry just too many variables that I haven't personally gone over recently. – Codeglot Nov 8 '10 at 5:48
The only thing I can come up with is on your default_url_options set it as the sendgrid url smtp.sendgrid.net – Codeglot Nov 8 '10 at 5:50
@AnApprentice have you figured out a solution to this yet? I'm trying to do the same thing as you are. – Justin Meltzer Aug 2 '11 at 3:46
feedback

I'm searching for the same answer myself. In intializers/devise.rb I read:

  # Configure the class responsible to send e-mails.
  # config.mailer = "Devise::Mailer"

I wonder if Devise has to be told to use Actionmailer.

link|improve this answer
It wasn't that. I used a JSON query to check the sendgrid credentials. sendgrid.com/api/… And that worked fine. It seems I can get an email from Devise when I use the forgotpassword route, but not when I use the sign up form – Steve Root Dec 2 '10 at 22:11
1  
OK, my problem was never that emails weren't being sent from heroku to sendgrid, my was that I had not set the Devise model options to include :confirmable (but I had :recoverable, which is why my recover emails worked). – Steve Root Dec 2 '10 at 22:36
feedback

Your Answer

 
or
required, but never shown

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