Sha256: 3cc3f88f375f9ba25bd4d995928b18af00f4fec44e94e51cea76229aa5882fcf
Contents?: true
Size: 902 Bytes
Versions: 21
Compression:
Stored size: 902 Bytes
Contents
class ResourceExportMailer < ApplicationMailer def completed(resource_export_file) @resource_export_file = resource_export_file @library_group = LibraryGroup.site_config from = "#{LibraryGroup.system_name(resource_export_file.user.profile.locale)} <#{@library_group.user.email}>" subject = "#{I18n.t('resource_export_mailer.completed.subject')}: #{@resource_export_file.id}" mail(from: from, to: resource_export_file.user.email, subject: subject) end def failed(resource_export_file) @resource_export_file = resource_export_file @library_group = LibraryGroup.site_config from = "#{LibraryGroup.system_name(resource_export_file.user.profile.locale)} <#{@library_group.user.email}>" subject = "#{I18n.t('resource_export_mailer.failed.subject')}: #{@resource_export_file.id}" mail(from: from, to: resource_export_file.user.email, subject: subject) end end
Version data entries
21 entries across 21 versions & 1 rubygems