So I have this line in my php form processor:

$automessage = 'Thanks for requesting a sample from us! We have received your information, so please expect your sample shortly. In the meantime, be sure to connect with us on <a href="http://www.facebook.com/company">Facebook</a>!';

But the link still shows up as plain text, even though I have this header:

$headers  = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";

Is my formatting for the link incorrect?

EDIT: Here is the entire script:

<?php


// CLIENT INFORMATION

$firstname = $_POST['firstname'];
$lastname = $_POST['lastname'];
$email = $_POST['email'];
$company = $_POST['company'];
$address = $_POST['address'];
$city = $_POST['city'];
$state = $_POST['state'];
$zip = $_POST['zip'];
$phone = $_POST['phone'];



// MODIFY THE FOLLOWING SECTION

// your name
$recipientname = "company";

// your email
$recipientemail = "me@company.com";

// subject of the email sent to you
$subject = "Sample Request for $recipientname";

// send an autoresponse to the user?
$autoresponse = "yes";

// subject of autoresponse
$autosubject = "Thank you for your sample request!";

// autoresponse message
$automessage = 'Thanks for requesting a sample from company! We have received your information, so please expect your sample shortly. In the meantime, be sure to connect with us on <a href="http://www.facebook.com/company">Facebook</a> and Twitter!';

// thankyou displayed after the user clicks "submit"
$thanks = "Thank you for contacting us. We will get back to you as soon as possible.";

// END OF NECESSARY MODIFICATIONS

// format message
$message = "New sample request for $recipientname:
<br>
<br>
First Name: $firstname
<br>
Last Name: $lastname
<br>
Email: $email
<br>
Company: $company
<br>
Address: $address
<br>
City: $city
<br>
State: $state
<br>
Zip: $zip
<br>
Phone: $phone
<br>
--
<br>";

// To send HTML mail, the Content-type header must be set
$headers  = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";

// Additional headers
$headers .= 'From: company <me@company.com>' . "\r\n";


// send mail and print success message
mail($recipientemail, $subject, $message, $headers);

if($autoresponse == "yes") {
$autosubject = stripslashes($autosubject);
$automessage = stripslashes($automessage);
mail($email,"$autosubject","$automessage","From: $recipientname <$recipientemail>");
}

header("Location: thank-you-sample.php");

?>
link|improve this question

64% accept rate
show us the full email code – Dagon Feb 15 at 22:12
When viewing the email do you see "<a href="facebook.com/company">Facebook</a>"; or just "Facebook" – benni_mac_b Feb 15 at 22:13
@benni_mac_b I see the first one "<a href="facebook.com/company">Facebok</a>" – miles Feb 15 at 22:16
valid html would help – Dagon Feb 15 at 22:43
Pardon my ignorance, but how is it not valid? – miles Feb 16 at 15:47
feedback

1 Answer

up vote 2 down vote accepted
mail($email,"$autosubject","$automessage","From: $recipientname <$recipientemail>");
# You've forgotten to include the HTML-header here.. ^
link|improve this answer
I don't understand. What did I forget? The code you posted looks the same as what I have. – miles Feb 16 at 15:46
The headers for an html mail are set in $headers. But you don't use these headers in your second mail()-call. – DragonWork Feb 16 at 16:28
Got it working! Thanks! – miles Feb 16 at 17:27
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.