# Sending mails related to events life cycle class EventMailer < ActionMailer::Base def create(event) @event = event mail 'Message-ID' => "", to: event.submitter, subject: t('event_mailer.create.subject', subject: event.title) end def accept(event, current_user) @event = event @current_user = current_user mail 'In-Reply-To' => "", to: event.submitter, subject: t('event_mailer.accept.subject', subject: event.title) end def destroy(event, current_user, reason) @event = event @current_user = current_user @reason = reason mail 'In-Reply-To' => "", to: event.submitter, subject: t('event_mailer.destroy.subject', subject: event.title) end end