Sha256: 53c4dd836a80834b2a7b85bdde6a3e679f2fc622ab2bbc73e82feb304ab226ae
Contents?: true
Size: 775 Bytes
Versions: 16
Compression:
Stored size: 775 Bytes
Contents
class ServicesMailer < ActionMailer::Base unloadable layout 'email_default' default_url_options[:host] = GlobalConfig.application_url def notification_feed_added(feed) muck_setup_email(GlobalConfig.admin_email) subject I18n.t('muck.services.new_global_feed', :application_name => GlobalConfig.application_name) body :feed => feed, :application_name => GlobalConfig.application_name end def notification_oai_endpoint_added(oai_endpoint) muck_setup_email(GlobalConfig.admin_email) subject I18n.t('muck.services.new_global_feed', :application_name => GlobalConfig.application_name) body :oai_endpoint => oai_endpoint, :application_name => GlobalConfig.application_name end end
Version data entries
16 entries across 16 versions & 1 rubygems