Class: Decidim::Accountability::ImportMailer
- Inherits:
-
Decidim::ApplicationMailer
- Object
- Decidim::ApplicationMailer
- Decidim::Accountability::ImportMailer
- Defined in:
- app/mailers/decidim/accountability/import_mailer.rb
Overview
This mailer sends a notification email containing the result of importing a CSV of results.
Instance Method Summary collapse
-
#import(user, errors) ⇒ Object
Public: Sends a notification email with the result of a CSV import of results.
Instance Method Details
#import(user, errors) ⇒ Object
Public: Sends a notification email with the result of a CSV import of results.
user - The user to be notified. errors - The list of errors generated by the import
Returns nothing.
15 16 17 18 19 20 21 22 23 |
# File 'app/mailers/decidim/accountability/import_mailer.rb', line 15 def import(user, errors) @user = user @organization = user.organization @errors = errors with_user(user) do mail(to: "#{user.name} <#{user.email}>", subject: I18n.t("decidim.accountability.import_mailer.import.subject")) end end |