clarion/app/mailers/proposition_mailer.rb

12 lines
578 B
Ruby
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

class PropositionMailer < ActionMailer::Base
def new_proposition_notification(proposition)
@proposition = proposition
mail(to: proposition.proposable.conference.email, subject: "Ново предложение за #{@proposition.proposable_type}: #{@proposition.proposable_title}")
end
def proposition_withdrawal_notification(proposition)
@proposition = proposition
mail(to: proposition.proposable.conference.email, subject: "Оттеглено е предложение за #{@proposition.proposable_type}: #{@proposition.proposable_title}")
end
end