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?
add customer name too in each email-subject
Moderator: mkoch227
Re: add customer name too in each email-subject
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
3. Save and upload to the server
Email subjects should then support the %%NAME%% tag.
1. Find the first occurrence of this code inside:
Code: Select all
%%STATUS%%
Code: Select all
$msg = str_replace('%%NAME%%', $ticket['name'], $msg);
Email subjects should then support the %%NAME%% tag.
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here 
You should follow me on Twitter here
Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools


Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools
Re: add customer name too in each email-subject
It works fine. Thank You very much. 
