FIX: use email_site_title for emails like reset password and account activation too

This commit is contained in:
Neil Lalonde
2014-07-22 15:52:14 -04:00
parent dffe528400
commit b3c149de22
2 changed files with 11 additions and 2 deletions

View File

@ -242,6 +242,11 @@ describe Email::MessageBuilder do
expect(custom_aliased_from.build_args[:from]).to eq("Finn the Dog <#{finn_email}>")
end
it "email_site_title will be added if it's set" do
SiteSetting.stubs(:email_site_title).returns("The Forum")
expect(build_args[:from]).to eq("The Forum <#{SiteSetting.notification_email}>")
end
end
end