clarion/app/mailers/event_mailer.rb

20 lines
1.0 KiB
Ruby
Raw Normal View History

# -*- coding: utf-8 -*-
class EventMailer < ActionMailer::Base
def new_event_notification(event)
@event = event
mail(to: 'core@openfest.org', subject: "Ново предложение за #{@event.class.model_name.human.mb_chars.downcase.to_s}: #{@event.title}")
end
def acceptance_notification(event)
@event = event
I18n.locale = @event.language
2014-10-13 12:24:25 +03:00
mail to: @event.user.email, from: 'program@openfest.org', subject: I18n.t('event_mailer.acceptance_notification.subject', conference: @event.conference.title, submission_type: @event.class.model_name.human.mb_chars.downcase.to_s, title: @event.title)
end
2014-10-17 21:05:26 +03:00
def rejection_notification(event)
@event = event
I18n.locale = 'bg' # XXX Change this when per-user locale is introduced in the user
mail to: @event.user.email, from: 'program@openfest.org', subject: "Предложението ви за #{@event.conference.title} за #{event.class.model_name.human.mb_chars.downcase.to_s}#{@event.title}“ не е одобрено"
end
end