My rails app uses sendgrid to send emails. I wanted to know if there was anyway for all the emails to use a common layout. I tried setting the layout in the notifications controller but the layout was not being applied to the emails.

link|improve this question

60% accept rate
feedback

1 Answer

up vote 2 down vote accepted

I don't think this is specific to SendGrid. If you are using their SMTP interface then you don't need to do anything additional over sending a normal email in Rails.

To use layouts in emails you specify the layout in a very similar fashion to a normal controller. This guide should help. Importantly note:

The layout name needs to be the same as your mailer, such as user_mailer.html.erb and user_mailer.text.erb to be automatically recognized by your mailer as a layout.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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