Jump to content

Contact Form


nwilson92

Recommended Posts

Hi,

 

I recently bought a HTML template and it came with a contact form which work fines.

 

The only issue I have is that when the email arrives it only shows the persons first name, not their surname unless the name is kept as one e.g.. Adam-Smith

 

I can't see why this is and has been bugging me for the past couple of days!

 

Any ideas?

 


$email_to = "contact@website";
$name = $_POST["user-name"];
$email = $_POST["user-email"];
$message = $_POST["user-message"];
$text = "Name: $name

Email: $email

Message: $message";
$headers = "MIME-Version: 1.0" . "\r\n";
$headers .= "Content-type:text/html; charset=utf-8" . "\r\n";
$headers .= "From: <$name>" . "\r\n";
mail($email_to, "Contact", $text, $headers);
?>

 

 

Thanks

Link to comment
https://forums.phpfreaks.com/topic/292044-contact-form/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.