how can I get the email to be a link within the body of the message?
This is what I'm using for my email script and I want the users email to be a clickable link
// email corporate office
$corpEmail="skdzines@columbus.rr.com";
$subject="Customer Feedback from Web Site";
$header = "From: $email\r\n";
$header .= "X=Mailer: PHP/";
$message="FirstName: ".$FirstName."
LastName: ".$LastName."
Address1: ".$Address1."
Address2: ".$Address2."
City: ".$City."
State: ".$State."
Zip: ".$Zip."
Phone: ".$Phone."
email: ".$email."
type: ".$type."
subject: ".$subject."
other: ".$other."
location: ".$location."
comment: ".$comment."
contact: ".$contact."
method: ".$method."
";
$message = stripslashes($message);
mail($corpEmail,$subject,$message, $header);
}
No matter what I do, I can't get it to work. I'm sure it is something easy but I can't figure it out.
Thanks for your help.