about summary refs log tree commit diff stats
path: root/app/mailers/comment_mailer.rb
blob: aeed1b0c2f579281c091555b012ca00e9be50b4b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
class CommentMailer < ApplicationMailer
  def new_comment_email
    @comment = params[:comment]
    mail(to: @comment.blog.user.email, subject: "[Four Island] Comment on #{@comment.blog.title}")
  end

  def new_pending_comment_email
    @comment = params[:comment]
    mail(to: @comment.blog.user.email, subject: "[Four Island] Pending comment on #{@comment.blog.title}")
  end
end