Sha256: ebac9213b6c175e26edc8f8d9fabebb8342a2f80b81c6c32c14bf8a66d8b151c

Contents?: true

Size: 361 Bytes

Versions: 1

Compression:

Stored size: 361 Bytes

Contents

module RailsPageComment
  class NotifyChanges < ActionMailer::Base


    default from: "from@example.com"


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

  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rails_page_comment-0.1.0 app/mailers/rails_page_comment/notify_changes.rb