Reputation: 4787
I'm a newbie and don't understand where this error message:
Missing template customer_mailer/confirmation_instructions with "mailer". Searched in:
* "customer_mailer"
Where is it expecting the template to be ?
Upvotes: 0
Views: 323
Reputation: 2353
This message tells you need a view called confirmation_instructions.html.*
in your app/views/customer_mailer/
path.
The *
must be changed according to your handler: erb
, haml
, etc.
Upvotes: 2