mirror of
https://github.com/discourse/discourse.git
synced 2025-04-03 05:39:41 +08:00
Merge pull request #2192 from jorgemanrubia/configurable-emails-prefix
Option to change the subject prefix in emails
This commit is contained in:
commit
e6989b5313
@ -819,6 +819,7 @@ en:
|
|||||||
email_in_address: "The email address the users can post new topics to. None means users can't post globally."
|
email_in_address: "The email address the users can post new topics to. None means users can't post globally."
|
||||||
email_in_min_trust: "The minimum trust level an users needs to have to be allowed to post new topics via email"
|
email_in_min_trust: "The minimum trust level an users needs to have to be allowed to post new topics via email"
|
||||||
email_in_category: "The category new emails are posted into"
|
email_in_category: "The category new emails are posted into"
|
||||||
|
email_prefix: "The [label] used in the subject of emails. It will default to 'title' if not set"
|
||||||
|
|
||||||
minimum_topics_similar: "How many topics need to exist in the database before similar topics are presented."
|
minimum_topics_similar: "How many topics need to exist in the database before similar topics are presented."
|
||||||
|
|
||||||
|
@ -259,6 +259,7 @@ email:
|
|||||||
default: 3
|
default: 3
|
||||||
enum: 'MinTrustToCreateTopicSetting'
|
enum: 'MinTrustToCreateTopicSetting'
|
||||||
email_in_category: -1
|
email_in_category: -1
|
||||||
|
email_prefix: ''
|
||||||
|
|
||||||
files:
|
files:
|
||||||
max_image_size_kb:
|
max_image_size_kb:
|
||||||
|
@ -21,7 +21,7 @@ module Email
|
|||||||
@to = to
|
@to = to
|
||||||
@opts = opts || {}
|
@opts = opts || {}
|
||||||
|
|
||||||
@template_args = {site_name: SiteSetting.title,
|
@template_args = {site_name: SiteSetting.email_prefix.presence || SiteSetting.title,
|
||||||
base_url: Discourse.base_url,
|
base_url: Discourse.base_url,
|
||||||
user_preferences_url: "#{Discourse.base_url}/user_preferences" }.merge!(@opts)
|
user_preferences_url: "#{Discourse.base_url}/user_preferences" }.merge!(@opts)
|
||||||
|
|
||||||
|
@ -145,10 +145,15 @@ describe Email::MessageBuilder do
|
|||||||
context "template_args" do
|
context "template_args" do
|
||||||
let(:template_args) { builder.template_args }
|
let(:template_args) { builder.template_args }
|
||||||
|
|
||||||
it "has the site name" do
|
it "has the site name as the site title when `SiteSetting.email_prefix` is not set" do
|
||||||
expect(template_args[:site_name]).to eq(SiteSetting.title)
|
expect(template_args[:site_name]).to eq(SiteSetting.title)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
it "has the site name as SiteSetting.email_prefix when it is set" do
|
||||||
|
SiteSetting.email_prefix = 'some email prefix'
|
||||||
|
expect(template_args[:site_name]).to eq(SiteSetting.email_prefix)
|
||||||
|
end
|
||||||
|
|
||||||
it "has the base url" do
|
it "has the base url" do
|
||||||
expect(template_args[:base_url]).to eq(Discourse.base_url)
|
expect(template_args[:base_url]).to eq(Discourse.base_url)
|
||||||
end
|
end
|
||||||
|
Loading…
x
Reference in New Issue
Block a user