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.
|
feedback
|
|
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:
| |||
|
feedback
|