21 lines
590 B
Ruby
21 lines
590 B
Ruby
# Sending mails related to events' notes
|
|
class NoteMailer < ActionMailer::Base
|
|
def notify(note)
|
|
@note = note
|
|
|
|
mail 'In-Reply-To' =>
|
|
"<event-#{note.event.id}@" \
|
|
+ "#{ActionMailer::Base.default_url_options[:host]}>",
|
|
to: note.event.submitter,
|
|
subject: t('note_mailer.notify.subject', subject: note.event.title)
|
|
end
|
|
|
|
def create(note)
|
|
@note = note
|
|
|
|
mail 'In-Reply-To' =>
|
|
"<mod-#{note.event.id}@#{ActionMailer::Base.default_url_options[:host]}>",
|
|
subject: t('note_mailer.create.subject', subject: note.event.title)
|
|
end
|
|
end
|