adopt-a-hydrant/app/mailers/thing_mailer.rb

14 lines
355 B
Ruby
Raw Normal View History

class ThingMailer < ActionMailer::Base
default :from => "hello@#{default_url_options[:host]}"
def reminder_email(thing)
@thing = thing
@user = thing.user
mail({
:to => thing.user.email,
:from => "reminder@#{default_url_options[:host]}",
:subject => ["Remember to Shovel", thing.name].compact.join(' '),
})
end
end