# Sending mails related to events' notes class NoteMailer < ActionMailer::Base helper :events def notify(note) @note = note mail 'In-Reply-To' => "", to: note.event.submitter, subject: t('mail_suffix') + t('note_mailer.notify.subject', subject: note.event.title) end def create(note) @note = note mail 'In-Reply-To' => "", subject: t('mail_suffix') + t('note_mailer.create.subject', subject: note.event.title) end end