Search found 2 matches

by kp
12 Sep 2005, 13:11
Forum: Help
Topic: Using custom functions to add additional email recipients
Replies: 0
Views: 2679

Using custom functions to add additional email recipients

We have several instances at our studio where we need certain bugs to also go out to internal mailing lists. For example, in Project X any bug that is marked as high priority, needs to be also emailed to our internal mailing list 'critical-issues'.

I had previously hacked into email.api.php and ...
by kp
12 Sep 2005, 12:48
Forum: Help
Topic: Add status to email subject
Replies: 3
Views: 5077

Correction

The code above resets $p_visible_bug_data['email_status'] but then uses $email_subject_status. which isn't a desired result and doesn't work. I think the code should read:

Add:
$t_status = $p_visible_bug_data ['email_status'];
$email_subject_status = strtoupper(get_enum_element( 'status', $t ...