class NoteMailer < ActionMailer::Base def create(note) @note = note mail 'In-Reply-To' => "", to: note.event.contact, subject: t('note_mailer.create.subject', subject: note.event.title) end end