You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
asciinema.org/app/mailers/user_mailer.rb

16 lines
465 B
Ruby

class UserMailer < ActionMailer::Base
default :from => "asciinema <hello@asciinema.org>"
helper :application
def new_comment_email(user, comment)
@comment = comment
@author = UserDecorator.new(comment.user)
@asciicast = AsciicastDecorator.new(@comment.asciicast)
user = UserDecorator.new(user)
to = "#{user.nickname} <#{user.email}>"
subject = %(New comment for #{@asciicast.title})
mail :to => to, :subject => subject
end
end