Class: SocialNetworking::Mailer

Inherits:
ActionMailer::Base
  • Object
show all
Defined in:
app/mailers/social_networking/mailer.rb

Overview

Notifies participants of comments, likes, and nudges.

Instance Method Summary collapse

Instance Method Details

#notify(recipient:, body:, subject:) ⇒ Object



5
6
7
8
# File 'app/mailers/social_networking/mailer.rb', line 5

def notify(recipient:, body:, subject:)
  @message_body = body
  mail(to: recipient.email, subject: subject)
end