View Issue Details

IDProjectCategoryView StatusLast Update
0008152mantisbtemailpublic2014-10-05 18:11
ReporterMartin Fuchs Assigned To 
PrioritynormalSeverityfeatureReproducibilityalways
Status newResolutionopen 
Product Version1.1.0a3 
Summary0008152: 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.

Tagspatch
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 );

Activities