Sha256: 1c8c01fc46294bb9c2a3923b163905ec66f68546479b09d54e59583e3afadc94
Contents?: true
Size: 350 Bytes
Versions: 9
Compression:
Stored size: 350 Bytes
Contents
class Notifier < ActionMailer::Base def changeEmail(person, link) # Email header info MUST be added here @recipients = person.email @subject = "[parleR] check key: "+person.check_key @from = MAIL_FROM # Email body substitutions go here @body["name"] = person.name @body["link"] = link @body["check_key"] = person.check_key end end
Version data entries
9 entries across 9 versions & 1 rubygems