HTML Email - adding data to note_mailtemplate.html
Posted: 11 Apr 2024, 22:57
I'd like to add some of the main Issue data to note email notifications.
It looks like the array $p_visible_bug_data is passed for bug email notifications like:
The same array is not passed when sending note notifications:
Is `$p_visible_bug_data` a common system wide variable and could I pass that as an argument in `email_template_bugnote()`?
It looks like the array $p_visible_bug_data is passed for bug email notifications like:
Code: Select all
$t_message = email_template_bug_message( $p_visible_bug_data, $t_message );Code: Select all
$t_message = email_template_bugnote($t_bugnote, $t_project_id, $t_show_time_tracking, $t_separator,$t_message );