Displaying 1 result from an estimated 1 matches for "notice_request".
2008 Mar 13
0
Template being ignored when attaching pdf in e-mail
The following code attaches my pdf with success. However, my e-mail
template is not being rendered in the e-mail. Any idea''s why my
template is ignored?
require ''pdf/writer''
class NotifierRequest < ActionMailer::Base
def inforequest(name, email, notice_request, message)
@subject = ''Notice''
@body = {:name => name, :email => email, :notice_request
=> notice, :message => message}
@recipients = email
@from = "test-J0of1frlU80@public.gmane.org"
@sent_on = Time.now
@con...