Possible Duplicate:
Php mail: how to send html?
I want to use the Mail() function in PHP but I am having some difficulties to include a link and a variable in the messagge.
$to = "someone@example.com";
$subject = "Test mail";
$message = "Hello! This is a simple email message.";
$from = "someonelse@example.com";
$headers = "From:" . $from;
mail($to,$subject,$message,$headers);
echo "Mail Sent.";
How can I send the message below?
Please click <a href="http://domain.com/verify.php?token=$token">here</a> to veify.