Sha256: 7718dc9db607bf3c193613fa187afe9a2a44858902a213d7aa0d692e62941cdf

Contents?: true

Size: 317 Bytes

Versions: 5

Compression:

Stored size: 317 Bytes

Contents

# A mailer for new comments on the fake blog
class BlogCommentMailer < ActionMailer::Base
  # Send email about new comments
  def comment_notification
    @subject = t('subject')
  end
end

# Set the path to where the mail template will be found
BlogCommentMailer.template_root = "#{File.dirname(__FILE__)}/../views"

Version data entries

5 entries across 5 versions & 4 rubygems

Version Path
graysky-translator-1.0.0 test/fixtures/app/models/blog_comment_mailer.rb
splendeo_translator-1.0.1 test/fixtures/app/models/blog_comment_mailer.rb
splendeo_translator-1.0.0 test/fixtures/app/models/blog_comment_mailer.rb
fdl_translator-1.0.1 test/fixtures/app/models/blog_comment_mailer.rb
translator-1.0.0 test/fixtures/app/models/blog_comment_mailer.rb