Hi
I would like to customize the emails a bit. I would like to have the subject of the ticket in the subject of the email followed by the support id. I know a little php, can anyone help!
thanks in advance
Customise Email messages
Moderator: mkoch227
Check inside submit_ticket.php
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
-
- Posts: 7
- Joined: Wed Feb 01, 2006 12:08 am
for info i replaced
@mail($email,$hesklang['new_ticket_submitted'],$message,$headers);
with
@mail($email,"New ticket: " . $trackingID . " - " . $subject,$message,$headers);
and
@mail($email,$hesklang['ticket_received'],$message,$headers);
with
@mail($email,"Your ticket: " . $trackingID . " has been submitted",$message,$headers);
and in reply_ticket
@mail($email,$hesklang['new_reply_ticket'],$message,$headers);
with
@mail($email,"Reply to Ticket: " . $trackingID,$message,$headers);
@mail($email,$hesklang['new_ticket_submitted'],$message,$headers);
with
@mail($email,"New ticket: " . $trackingID . " - " . $subject,$message,$headers);
and
@mail($email,$hesklang['ticket_received'],$message,$headers);
with
@mail($email,"Your ticket: " . $trackingID . " has been submitted",$message,$headers);
and in reply_ticket
@mail($email,$hesklang['new_reply_ticket'],$message,$headers);
with
@mail($email,"Reply to Ticket: " . $trackingID,$message,$headers);
-
- Posts: 7
- Joined: Wed Feb 01, 2006 12:08 am
How about admin_reply_ticket.php 

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
-
- Posts: 7
- Joined: Wed Feb 01, 2006 12:08 am