Displaying 1 result from an estimated 1 matches for "my_calling_method".
2006 May 24
1
ActionMailer (Action Mailer) Template not found? Help!!
...using the EXACT
code from the "Agile Development With Rails" chapter on "Sending
E-Mail", pp. 411-416, except for my names (mailer named "Notifier",
emailer method named "report". And what I get is:
ActionView::ActionViewError in <my_controller>#<my_calling_method>
"No rhtml, rxml, rjs or delegate template found for report."
I generated the files with "script/server mailer Notifier report", and
there is indeed a template: apps/views/notifier/report.rhtml
I am calling it with:
email = ErrNotifier.create_err_report( Time.now )
r...