Send new action notification email after create Proposal

After create a proposal send email to proposal's author with information text and new actions available.
This commit is contained in:
taitus
2019-02-05 18:23:52 +01:00
parent 868c37ef35
commit c959e078b8
8 changed files with 168 additions and 0 deletions

View File

@@ -5,4 +5,9 @@ class Dashboard::Mailer < ApplicationMailer
@proposal = proposal
mail to: proposal.author.email, subject: proposal.title
end
def new_actions_notification_on_create(proposal)
@proposal = proposal
mail to: proposal.author.email, subject: I18n.t("mailers.new_actions_notification_on_create.subject")
end
end