mirror of
https://github.com/redmine/redmine.git
synced 2026-03-04 03:21:24 +01:00
Add X-Redmine-Issue-Priority headers to issue notification mails (#2746).
Patch by Holger Just. git-svn-id: https://svn.redmine.org/redmine/trunk@22244 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
@@ -76,6 +76,7 @@ class Mailer < ActionMailer::Base
|
||||
'Issue-Id' => issue.id,
|
||||
'Issue-Author' => issue.author.login,
|
||||
'Issue-Assignee' => assignee_for_header(issue)
|
||||
redmine_headers 'Issue-Priority' => issue.priority.name if issue.priority
|
||||
message_id issue
|
||||
references issue
|
||||
@author = issue.author
|
||||
@@ -108,6 +109,7 @@ class Mailer < ActionMailer::Base
|
||||
'Issue-Id' => issue.id,
|
||||
'Issue-Author' => issue.author.login,
|
||||
'Issue-Assignee' => assignee_for_header(issue)
|
||||
redmine_headers 'Issue-Priority' => issue.priority.name if issue.priority
|
||||
message_id journal
|
||||
references issue
|
||||
@author = journal.user
|
||||
|
||||
@@ -210,6 +210,7 @@ class MailerTest < ActiveSupport::TestCase
|
||||
# List-Id should not include the display name "Redmine"
|
||||
assert_equal '<redmine.example.net>', mail.header['List-Id'].to_s
|
||||
assert_equal 'Bug', mail.header['X-Redmine-Issue-Tracker'].to_s
|
||||
assert_equal 'Low', mail.header['X-Redmine-Issue-Priority'].to_s
|
||||
end
|
||||
|
||||
def test_email_headers_should_include_sender
|
||||
|
||||
Reference in New Issue
Block a user