use light email template for staged users

This commit is contained in:
Régis Hanol
2015-12-09 19:45:46 +01:00
parent c447900e3b
commit 1d70434de5
2 changed files with 29 additions and 1 deletions

View File

@@ -289,7 +289,10 @@ class UserNotifications < ActionMailer::Base
end
template = "user_notifications.user_#{notification_type}"
template << "_pm" if post.topic.private_message?
if post.topic.private_message?
template << "_pm"
template << "_staged" if user.staged?
end
email_opts = {
topic_title: title,