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