Displaying 1 result from an estimated 1 matches for "signupthanks".
Did you mean:
signup_thanks
2006 May 30
2
No rhtml, rxml, rjs... problem with Action Mailer, again
...t I haven''t found
the solution yet. This is the problem:
"ActionView::ActionViewError in Periodico#index
No rhtml, rxml, rjs or delegate template found for..."
when trying to send email through action mailer.
I have created the Notifier.rb model (in app/models/ folder)
def signupthanks(user)
# Email header info MUST be added here
@recipients = user.email
@from = "from@myorg.org"
@subject = "Thank you for registering with our website"
# Email body substitutions go here
@body["first_name"] = user
end
I call...