I want to send confirmation link to new users. I used this code to send mail (confirmation link)
$to = $email;
$subject = "Verify Your Account";
$actual_link = "http://myorchidkart.com/simplepay/verify_email.php?hash=" . $hash;
$message = "<a href ='".$actual_link."'>" . $actual_link . "</a>";
$headers = "MIME-Version: 1.0" . "\r\n";
$headers .= "Content-type: text/html; charset=iso-8859-1" . "\r\n";
$headers .= "From: ". $from. "\r\n";
$headers .= "Reply-To: ". $from. "\r\n";
mail($to, $subject, $message, $headers);
but there is no confirmation link, only text but no link how can I solve this ...?
mail is look like this