1
0
mirror of https://github.com/meineerde/redmine.git synced 2026-02-01 03:57:15 +00: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:
Go MAEDA 2023-05-13 08:05:32 +00:00
parent edb7d23e69
commit 9d0b073f7d
2 changed files with 3 additions and 0 deletions

View File

@ -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

View File

@ -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