2010-07-23 08:42:21 -04:00
|
|
|
class ProcMailer < ActionMailer::Base
|
2016-08-06 13:03:39 -04:00
|
|
|
default to: "system@test.lindsaar.net",
|
|
|
|
"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 },
|
2016-08-06 13:03:39 -04:00
|
|
|
"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
|
|
|
|
2016-08-06 13:55:02 -04:00
|
|
|
def give_a_greeting
|
|
|
|
"Thanks for signing up this afternoon"
|
|
|
|
end
|
2010-07-23 08:42:21 -04:00
|
|
|
end
|