in Outlook mail the link: http://www.test.com/manuallysubmit/activation.php
onclick of this link it appears as: res://ieframe.dll/syntax.htm#www.tes...activation.php
How to remove "res://ieframe.dll/syntax.htm#
" string from the URL? But in any other email like gmail,yahoo there is no such problem.
The script is given below:
Code: Select all
$to='info@test.com';
$subject="test.com: Registration Details";
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= "From:Manually Submit <'admin@test.com'>" . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
$link="www.test.com/manuallysubmit/activation.php";
$message="<a href='".$link."'>".$link."</a>";
mail ($to,$subject,$message,$headers);