Actions
Feature #23524
openAdd option to make the header info of the notification mails configurable
Status:
New
Priority:
Normal
Assignee:
-
Category:
Email notifications
Target version:
-
Start date:
Due date:
% Done:
0%
Estimated time:
Resolution:
Description
As discussed in this thread it would be quite useful if one could configure the contents of the info header of the notification mails that redmine sends out.
/app/models/mailer.rb
redmine_headers 'Project' => issue.project.identifier,
'Issue-Id' => issue.id,
'Issue-Author' => issue.author.login
redmine_headers 'Issue-Assignee' => issue.assigned_to.login if issue.assigned_to
Looking at this file, adding the option to add custom fields seems not that hard to implement, while adding the option to change/remove the default headers seems to need a more complex rewrite of the implemented functionality. Still implementing the custom additional fields option would be quite nice.
Actions