Class Notifier
In: app/models/notifier.rb
Parent: ActionMailer::Base

Methods

Public Instance methods

[Source]

    # File app/models/notifier.rb, line 3
 3: def signup_thanks( user )
 4:   # Email header info MUST be added here
 5:   @recipients = user.email
 6:   @from = "marc@isemann.de"
 7:   @subject = "Thank you for registering at solunas.org"
 8: 
 9:   # Email body substitutions go here
10:   @body["name"] = user.name
11: 
12: end

[Validate]