about summary refs log tree commit diff stats
path: root/data/maps/the_symbolic
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2025-09-11 10:49:44 -0400
committerStar Rauchenberger <fefferburbia@gmail.com>2025-09-11 10:49:44 -0400
commit298403649200b0e79b8d8b1669d92e796547ee47 (patch)
treedbd7475883a60d8aa2ebede07801c446257542b4 /data/maps/the_symbolic
parent5753db0d12da94f6ff2f1e3040a8be172be027b7 (diff)
downloadlingo2-archipelago-298403649200b0e79b8d8b1669d92e796547ee47.tar.gz
lingo2-archipelago-298403649200b0e79b8d8b1669d92e796547ee47.tar.bz2
lingo2-archipelago-298403649200b0e79b8d8b1669d92e796547ee47.zip
[Data] Fixed Purple NE Vestibules location name
Diffstat (limited to 'data/maps/the_symbolic')
0 files changed, 0 insertions, 0 deletions
erburbia@gmail.com> 2023-10-12 21:51:02 -0400 Webmaster gets an email when a comment is posted' href='/thoughts/commit/app/mailers/comment_mailer.rb?id=9ad3bca2ea475b709c8311ab25194e4578c1a0d9'>9ad3bca ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16


                                       
                                                                                                  
     


                               
                                                                                                          
     




                                                                                                               
   
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

  def reply_comment_email
    @comment = params[:comment]
    mail(to: @comment.reply_to.email, subject: "[Four Island] Reply to your comment on #{@comment.blog.title}")
  end
end