15 lines
404 B
Ruby
15 lines
404 B
Ruby
module Locomotive
|
|
class Notifications < ActionMailer::Base
|
|
|
|
default :from => Locomotive.config.mailer_sender
|
|
|
|
def new_content_entry(account, entry)
|
|
@account, @entry = account, entry
|
|
|
|
subject = t('locomotive.notifications.new_content_entry.subject', :type => entry.content_type.name, :locale => account.locale)
|
|
|
|
mail :subject => subject, :to => account.email
|
|
end
|
|
end
|
|
|
|
end |