search for: deliver_clever_email

Displaying 1 result from an estimated 1 matches for "deliver_clever_email".

2007 May 13
2
ActionMailer outside of Rails?
Has anyone used ActionMailer outside of rails? I have a requirement for work that will not allow me to do this from within a rails app. I have successfully sent an email in the following manner: MyMailer.deliver_clever_email(someArg,''testing!'') where the second argument is the body of the email, but when I try to call just: MyMailer.deliver_clever_email(someAr) and use a template, it complains that it doesn''t know where to find the rhtml template. How do I tell it where to look? Any help...