New and Improved 3.13 Beta. Highlights: Shareable filters and dashboards and lots of other goodies. Any feedback can be raised as JIRA issues in the JIRA project.
Issue Details (XML | Word | Printable)

Key: CRUC-266
Type: Dev. Sub-task Dev. Sub-task
Status: Closed Closed
Resolution: Fixed
Priority: Minor Minor
Assignee: Joe Xie [atlassian]
Reporter: Joe Xie [atlassian]
Votes: 0
Watchers: 0
Operations

If you were logged in you would be able to see more operations.
Crucible
CRUC-128

let the subject of the email be modifiable via the notification template

Created: 28/Feb/08 06:38 PM   Updated: 08/Apr/08 02:53 AM
Component/s: User Interface
Affects Version/s: None
Fix Version/s: 1.5

Time Tracking:
Not Specified

Issue Links:
Reference
 

Participants: Joe Xie [atlassian] and Matt Quail [Atlassian]
Since last comment: 24 weeks, 3 days ago
Resolution Date: 08/Apr/08 02:52 AM
Labels:


 Description  « Hide
currently, notification email subjects are not customisable. Since the change to use freemarker templates with notification email, there exists a way to allow email subject customisation in the email template.

The suggested model is to allow the subject be specified on the first line of the email template, after the ftl tag, beginning with the string "Subject: " , e.g.,

[#ftl]
Subject: ${comment.user.displayName} commented in ${review.permaId}       [#-- this is the subject line --]

[#if comment?exists]
    [@compress single_line=true]
    ${review.permaId}
    [#if comment.defectRaised]
        ${comment.user.displayName} raised a defect
    [#else]
        commented
    [/#if]

If the subject line doesn't exist, the default subject is used.



 All   Comments   Work Log   Change History      Sort Order: Ascending order - Click to sort in descending order
Matt Quail [Atlassian] added a comment - 28/Feb/08 10:03 PM
We should use "Subject" and use the same general conventions as SMTP

Joe Xie [atlassian] added a comment - 11/Mar/08 05:53 PM
Email notification subject line customisable via its template.