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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user