11 lines
319 B
Ruby
11 lines
319 B
Ruby
class CommentMailer < ApplicationMailer
|
|
default from: "sunset@lovingwomen.online"
|
|
|
|
def new_comment_notification
|
|
@user = params[:user]
|
|
@comment = params[:comment]
|
|
@comment_url = post_url(@comment.post)
|
|
@author = @post.member
|
|
mail(to: @user.email, subject: "A new comment was posted!")
|
|
end
|
|
end
|