Class: Pageflow::UserMailer
- Inherits:
-
ActionMailer::Base
- Object
- ActionMailer::Base
- Pageflow::UserMailer
- Includes:
- Resque::Mailer
- Defined in:
- app/mailers/pageflow/user_mailer.rb
Instance Method Summary collapse
Instance Method Details
#invitation(options) ⇒ Object
5 6 7 8 9 10 11 12 13 |
# File 'app/mailers/pageflow/user_mailer.rb', line 5 def invitation() @user = User.find(['user_id']) @password_token = ['password_token'] I18n.with_locale(@user.locale) do headers('X-Language' => I18n.locale) mail(to: @user.email, subject: t('.subject'), from: Pageflow.config.mailer_sender) end end |