View Issue Details
| ID | Project | Category | View Status | Date Submitted | Last Update |
|---|---|---|---|---|---|
| 0008152 | mantisbt | public | 2007-07-14 07:41 | 2014-10-05 18:11 | |
| Reporter | Martin Fuchs | Assigned To | |||
| Priority | normal | Severity | feature | Reproducibility | always |
| Status | new | Resolution | open | ||
| Product Version | 1.1.0a3 | ||||
| Summary | 0008152: include the action in the subject of notification mails | ||||
| Description | The attached little patch includes the action text into the subject of notification mails. I think it's quite usefull to immediately see the action in overview of the email program without the nee to look into the mail body. | ||||
| Tags | patch | ||||
| Attached Files | mantis-action-in-mail-subject.patch (562 bytes)
Index: core/email_api.php
===================================================================
RCS file: /cvsroot/mantisbt/mantisbt/core/email_api.php,v
retrieving revision 1.131
diff -u -p -d -u -r1.131 email_api.php
--- core/email_api.php 12 Jul 2007 06:27:01 -0000 1.131
+++ core/email_api.php 14 Jul 2007 11:38:28 -0000
@@ -935,6 +935,7 @@
if ( ( $t_message !== null ) && ( !is_blank( $t_message ) ) ) {
$t_message .= " \n";
+ $t_subject .= ' - '.$t_message;
}
$t_message .= email_format_bug_message( $p_visible_bug_data );
| ||||