Customise Email messages

Everything related to Hesk - helpdesk software

Moderator: mkoch227

Post Reply
char1iecha1k
Posts: 7
Joined: Wed Feb 01, 2006 12:08 am

Customise Email messages

Post by char1iecha1k »

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
Klemen
Site Admin
Posts: 10136
Joined: Fri Feb 11, 2005 4:04 pm

Post by Klemen »

Check inside submit_ticket.php
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here Image

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

Post by char1iecha1k »

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

Post by char1iecha1k »

There is one more i wish to modify but i cant find it, it isn the subject header of the email the client recieves when a member of staff updates the ticket. It currently says in the subject "new reply to your support ticket".

where has it gone :/
Klemen
Site Admin
Posts: 10136
Joined: Fri Feb 11, 2005 4:04 pm

Post by Klemen »

How about admin_reply_ticket.php :wink:
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here Image

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

Post by char1iecha1k »

Thanks, I think I found just after posting :/

very nice script.
Post Reply