Class: RailsPageComment::NotifyChanges

Inherits:
ActionMailer::Base
  • Object
show all
Defined in:
app/mailers/rails_page_comment/notify_changes.rb

Instance Method Summary collapse

Instance Method Details

#notice_changes(page_comment) ⇒ Object



8
9
10
11
12
# File 'app/mailers/rails_page_comment/notify_changes.rb', line 8

def notice_changes(page_comment)
  @page_comment = page_comment
  mail(to: RailsPageComment.recipient_email,
       subject: "画面/機能の詳細仕様を変更しました。", from: RailsPageComment.email_from)
end