Class: EventImportMailer
- Inherits:
-
ApplicationMailer
- Object
- ApplicationMailer
- EventImportMailer
- Defined in:
- app/mailers/event_import_mailer.rb
Instance Method Summary collapse
Instance Method Details
#completed(event_import_file) ⇒ Object
2 3 4 5 6 7 8 |
# File 'app/mailers/event_import_mailer.rb', line 2 def completed(event_import_file) @event_import_file = event_import_file @library_group = LibraryGroup.site_config from = "#{LibraryGroup.system_name(event_import_file.user.profile.locale)} <#{@library_group.user.email}>" subject = "#{I18n.t('event_import_mailer.completed.subject')}: #{@event_import_file.id}" mail(from: from, to: event_import_file.user.email, subject: subject) end |
#failed(event_import_file) ⇒ Object
10 11 12 13 14 15 16 |
# File 'app/mailers/event_import_mailer.rb', line 10 def failed(event_import_file) @event_import_file = event_import_file @library_group = LibraryGroup.site_config from = "#{LibraryGroup.system_name(event_import_file.user.profile.locale)} <#{@library_group.user.email}>" subject = "#{I18n.t('event_import_mailer.failed.subject')}: #{@event_import_file.id}" mail(from: from, to: event_import_file.user.email, subject: subject) end |