Hi
We are opening tickets using different screens which is why we aren't seeing the same result. I'm opening the ticket by going into the history and clicking the new button. You are in include/client/thankyou.inc.php
So my thankyou.inc.php now looks like this: -
I've added a reference to $ticket->getextid and the link.
<?php
if(!defined('OSTCLIENTINC') || !is_object($ticket)) die('Kwaheri rafiki!'); //Say bye to our friend..
//Please customize the message below to fit your organization speak!
?>
<div>
<?if($errors) {?>
<p align="center" id="errormessage"><?=$errors?></p>
<?}elseif($msg) {?>
<p align="center" id="infomessage"><?=$msg?></p>
<?}elseif($warn) {?>
<p id="warnmessage"><?=$warn?></p>
<?}?>
</div>
<div style="margin 100px 100px 0;">
<?=Format:($ticket->getName())?>,<br>
<p>
Thank you for contacting us.<br>
A support ticket request has been created and a representative will be getting back to you shortly if necessary.</p>
<?if($cfg->autoRespONNewTicket()){ ?>
<p>An email with the ticket number: <b><?=$ticket->getExtId();?></b> has been sent to <b><?=$ticket->getEmail()?></b>.
<br/>You'll need the ticket number along with your email to view status and progress online with this link<br/><br/><b>
<? echo $cfg->getBaseUrl() ."/view.php?e=" . $ticket->getEmail() . "&t=" . $ticket->getExtId();?>
</b>
</p>
<p>
If you wish to send additional comments or information regarding same issue, please follow the instructions on the email.
</p>
<?}?>
<p>Support Team </p>
</div>
<?
unset($_POST); //clear to avoid re-posting on back button??
?>
When I run this I get
Graham,
Thank you for contacting us.
A support ticket request has been created and a representative will be getting back to you shortly if necessary.
An email with the ticket number: 746744 has been sent to info@s.co.uk.
You'll need the ticket number along with your email to view status and progress online with this link
http://s.co.uk/techsupport/view.php?e=info@s.co.uk&t=746744(http://s.co.uk/techsupport/view.php?e=info@s.co.uk&t=746744)
If you wish to send additional comments or information regarding same issue, please follow the instructions on the email.
Support Team
Please note s.co.uk is not my real domain..!
How does that look ?