2010-07-23 08:42:21 -04:00
|
|
|
class ProcMailer < ActionMailer::Base
|
2012-10-07 13:54:14 -04:00
|
|
|
default to: 'system@test.lindsaar.net',
|
2010-07-23 08:42:21 -04:00
|
|
|
'X-Proc-Method' => Proc.new { Time.now.to_i.to_s },
|
2013-07-22 14:23:53 -04:00
|
|
|
subject: Proc.new { give_a_greeting },
|
|
|
|
'x-has-to-proc' => :symbol
|
2010-07-23 08:42:21 -04:00
|
|
|
|
|
|
|
def welcome
|
|
|
|
mail
|
|
|
|
end
|
2010-08-14 01:13:00 -04:00
|
|
|
|
2010-07-23 08:42:21 -04:00
|
|
|
private
|
2010-08-14 01:13:00 -04:00
|
|
|
|
2010-07-23 08:42:21 -04:00
|
|
|
def give_a_greeting
|
|
|
|
"Thanks for signing up this afternoon"
|
|
|
|
end
|
2010-08-14 01:13:00 -04:00
|
|
|
|
2010-07-23 08:42:21 -04:00
|
|
|
end
|