Hi All
How do i make my link t be clickable http://localhost/test/IT/help/approval.php?ticket=$tic when i sent this email i need them to be able to click the link and go to the url now it juts shows normal text i hav set it to be html but its not working
$to="$_POST[useremail]\r\n";
$msg="Update of Query.\r\n\n";
$msg="Please review and close your query.\r\n";
[QUOTE]$msg.="Goto http://localhost/test/IT/help/approval.php?ticket=$tic and please comment on our service.";[/QUOTE]
$mail1 = new PHPMailer();
$mail1->IsSMTP();
$mail1->Host = "10.0.0.3";
$mail1->FromName = " Helpdesk";
$mail1->Sender = "\" Helpdesk\" ";
$mail1->IsHTML(true);
$mail1->From = "From: $_POST[useremail]\r\n";
$mail1->AddAddress($to);
$mail1->Subject = "Close query - Ticket no. $_POST[ticket]";
$mail1->Body = $msg;