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