Sha256: 1e712e1aa821a169e5fd005927d6c5be7187399309d593258e185d9a5e3e48d3
Contents?: true
Size: 537 Bytes
Versions: 18
Compression:
Stored size: 537 Bytes
Contents
class RakerMailer < ActionMailer::Base unloadable layout 'email_default' default_url_options[:host] = GlobalConfig.application_url def notification_feed_added(feed) recipients GlobalConfig.admin_email from "#{GlobalConfig.from_email_name} <#{GlobalConfig.from_email}>" sent_on Time.now subject I18n.t('muck.raker.new_global_feed', :application_name => GlobalConfig.application_name) body :feed => feed, :application_name => GlobalConfig.application_name end end
Version data entries
18 entries across 18 versions & 1 rubygems