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

14 lines
387 B
Ruby

class UserMailer < ActionMailer::Base
default from: "ascii.io <hello@ascii.io>"
def new_comment_email(user, comment)
@comment = comment
@author = comment.user
@asciicast = AsciicastDecorator.new(@comment.asciicast)
to = "~#{user.nickname} <#{user.email}>"
subject = %(New comment for #{@asciicast.smart_title})
mail :to => to, :subject => subject
end
end