Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I would like to use the devise mailer globally, since that way I would not have to add another mailer to my app and just use the devise one, to send custom mails outside the devise views/controllers.

Already digged to long for this, anyone know how I can make this possible?

share|improve this question
Do you mean 'device'? – mozillanerd Nov 22 '11 at 22:04
No device for ruby on rails, I tagged in ruby on rails mayb I should edit to make that clear in the title also. – Rubytastic Nov 22 '11 at 22:15

1 Answer

up vote 2 down vote accepted

If the point is to only have one mailer, it's perhaps more straightforward to have your one single mailer just extend the DeviseMailer. E.g. in app/mailer

# app/mailers/mailer.rb
class Mailer < Devise::Mailer

  # add all your custom mailer methods
end

This setup will, for example, cause all emails (from Devise and otherwise) to all be sent with the app/layouts/mailer.html.erb template.

Note that to do this you do need to move the Devise mailer templates from app/views/devise/mailer to just app/views/mailer.

share|improve this answer
Thanks for pointing this out, still learning ROR this is very simple if you think about it! I try – Rubytastic Nov 23 '11 at 9:17

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.