Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am working on an app that is tightly being integrated in with Mandrill (MailChimp's transactional email service) and I am trying to override the Devise Mailer but for some reason when I send off the API call to Mandrill I receive their email, but Devise also sends me an email (which is blank).

Here is my DeviseMailer

class MyDeviseMailer < Devise::Mailer
  def reset_password_instructions(record)
    mandrill = Mandrill::API.new("#{MandrillConfig.api_key}")
    mandrill.messages 'send-template',
            { 
              :template_name => 'Forgot Password', 
              :template_content => "",
              :message => {
                :subject => "Forgot Password",
                :from_email => "test@test123.com",
                :from_name => "Company Support",
                :to => [
                  {
                    :email => record.email
                  }
                ],
                :global_merge_vars => [
                  {
                    :name => "FIRST_NAME",
                    :content => record.first_name
                  },
                  {
                    :name => "FORGOT_PASSWORD_URL",
                    :content => "<a href='#{edit_user_password_url(:reset_password_token => record.reset_password_token)}'>Change My Password</a>"
                  }
                ]
              }
            }
      #We need to call super because Devise doesn't think we have sent any mail 
      super
  end
end

The call to super I found here: http://qnundrum.com/answer.php?q=254917

share|improve this question
Just I thought, but have you tried to override the config.mailer option in devise.rb? – Cyle Dec 4 '12 at 18:46
I did, devise is still sending out the email because you have to call super at the bottom of your override – dennismonsewicz Dec 4 '12 at 18:50
What happens if you leave out the call to super? – mccannf Dec 5 '12 at 9:04

1 Answer

I was running into a similar issue.

Did you update the devise initializer file (devise.rb) to specify the following:

config.mailer = "MyDeviseMailer"  

You also needed to move any and all files in views/devise/mailer to views/mydevisemailer.

I would also restart your server.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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