FEATURE: notify by email when there are posts from new users waiting to be reviewed

This commit is contained in:
Neil Lalonde
2015-06-18 15:46:50 -04:00
parent 455ba6ae0c
commit 77595bcaa9
5 changed files with 95 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
require_dependency 'email/message_builder'
class PendingQueuedPostsMailer < ActionMailer::Base
include Email::BuildEmailHelper
def notify(opts={})
return unless SiteSetting.contact_email
build_email(SiteSetting.contact_email, template: 'queued_posts_reminder', count: opts[:count])
end
end