aboutsummaryrefslogtreecommitdiffstats
path: root/app/mailers/calendar_mailer.rb
blob: e2a368c6ca4762ec7f03a59ef198a81c6342bbab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
class CalendarMailer < ApplicationMailer
  def updated calendar_id, user_id
    @calendar = Calendar.find(calendar_id)
    user      = User.find(user_id)
    mail to: user.email, subject: t('mailers.calendar_mailer.updated.subject')
  end

  def created calendar_id, user_id
    @calendar = Calendar.find(calendar_id)
    user      = User.find(user_id)
    mail to: user.email, subject: t('mailers.calendar_mailer.created.subject')
  end
end