Swagata Mondal
Swagata Mondal

Reputation: 51

How to do Devise reset password mail customization?

i m using devise for authentication purpose, for reset password its send email like bellow

Hello there,

if you would like to reset or if you have forgotten your password please click on the      following link: click_here

Thank you and happy bantering!
the [email protected] Regards

i want last line looks like

regards 
the [email protected]

please give me some suggestion

Upvotes: 0

Views: 962

Answers (1)

HungryCoder
HungryCoder

Reputation: 7616

You can customize the devise views. Run the following command in your project directory:

rails g devise:views

This will copy devise views (including mailer templates) in your app/views/devise directory. Then you can customize as you want.

Upvotes: 2

Related Questions