Can anyone think of any way to customize the look of the email template (mailbox) on rails3?

I am currently using a gem called "Mailbox" on rails3. Each time, the mailbox delivers email, and it seems to use the template shown below. Does anyone know how to customize this template?

Even if you install a mailbox, views will not be created so you cannot configure it!

You have a new message: subject

      You have received a new message:    


Body
+1
source share
1 answer
rails g mailboxer:views

It will generate the necessary view files so that you can edit them.

+4
source

All Articles