1 # frozen_string_literal: true
3 class NewFollowerNotifier < ApplicationNotifier
4 recipients -> { record.following }
6 validates :record, :presence => true
8 deliver_by :email do |config|
9 config.mailer = "UserMailer"
10 config.method = "follow_notification"