Class: Locomotive::Notifications
- Inherits:
-
ActionMailer::Base
- Object
- ActionMailer::Base
- Locomotive::Notifications
- Defined in:
- app/mailers/locomotive/notifications.rb
Instance Method Summary collapse
Instance Method Details
#new_content_entry(account, entry) ⇒ Object
6 7 8 9 10 11 12 |
# File 'app/mailers/locomotive/notifications.rb', line 6 def new_content_entry(account, entry) @account, @entry, @type, @domain = account, entry, entry.content_type, entry.site.domains.first subject = t('locomotive.notifications.new_content_entry.subject', :domain => @domain, :type => @type.name, :locale => account.locale) mail :subject => subject, :to => account.email end |