mirror of
https://github.com/discourse/discourse.git
synced 2025-04-03 05:39:41 +08:00
use light email template for staged users
This commit is contained in:
parent
c447900e3b
commit
1d70434de5
@ -289,7 +289,10 @@ class UserNotifications < ActionMailer::Base
|
|||||||
end
|
end
|
||||||
|
|
||||||
template = "user_notifications.user_#{notification_type}"
|
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 = {
|
email_opts = {
|
||||||
topic_title: title,
|
topic_title: title,
|
||||||
|
@ -1916,6 +1916,22 @@ en:
|
|||||||
|
|
||||||
Please visit this link to view the message: %{base_url}%{url}
|
Please visit this link to view the message: %{base_url}%{url}
|
||||||
|
|
||||||
|
user_invited_to_private_message_pm_staged:
|
||||||
|
subject_template: "[%{site_name}] %{username} invited you to a message '%{topic_title}'"
|
||||||
|
text_body_template: |
|
||||||
|
|
||||||
|
%{username} invited you to a message
|
||||||
|
|
||||||
|
> **%{topic_title}**
|
||||||
|
>
|
||||||
|
> %{topic_excerpt}
|
||||||
|
|
||||||
|
at
|
||||||
|
|
||||||
|
> %{site_title} -- %{site_description}
|
||||||
|
|
||||||
|
Please visit this link to view the message: %{base_url}%{url}
|
||||||
|
|
||||||
user_invited_to_topic:
|
user_invited_to_topic:
|
||||||
subject_template: "[%{site_name}] %{username} invited you to a topic '%{topic_title}'"
|
subject_template: "[%{site_name}] %{username} invited you to a topic '%{topic_title}'"
|
||||||
text_body_template: |
|
text_body_template: |
|
||||||
@ -2004,6 +2020,15 @@ en:
|
|||||||
---
|
---
|
||||||
%{respond_instructions}
|
%{respond_instructions}
|
||||||
|
|
||||||
|
user_posted_pm_staged:
|
||||||
|
subject_template: "%{optional_re}%{topic_title}"
|
||||||
|
text_body_template: |
|
||||||
|
|
||||||
|
%{message}
|
||||||
|
|
||||||
|
---
|
||||||
|
%{respond_instructions}
|
||||||
|
|
||||||
digest:
|
digest:
|
||||||
why: "A brief summary of %{site_link} since your last visit on %{last_seen_at}"
|
why: "A brief summary of %{site_link} since your last visit on %{last_seen_at}"
|
||||||
subject_template: "[%{site_name}] Digest"
|
subject_template: "[%{site_name}] Digest"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user