Page 1 of 1
add customer name too in each email-subject
Posted: Thu May 15, 2014 11:03 pm
by agi
How can i add customer name too in each email-subject
I have tried with %%NAME%% in text.php but it doesnt work. Is there any ideas?
Re: add customer name too in each email-subject
Posted: Fri May 16, 2014 7:19 am
by Klemen
You will need to modify file inc/email_functions.inc.php
1. Find the
first occurrence of this code inside:
2. Below line with that code add
Code: Select all
$msg = str_replace('%%NAME%%', $ticket['name'], $msg);
3. Save and upload to the server
Email subjects should then support the %%NAME%% tag.
Re: add customer name too in each email-subject
Posted: Sat May 17, 2014 12:27 pm
by agi
It works fine. Thank You very much.
