Jump to content

small problem with contact.php


funlog

Recommended Posts

Hi there, my first post in your fine forum, thanks for having me  ;D

 

I set up a web page based on a template that included a contact form. The actual emailing of the form works great, but the email of the sender will always have their name and then cgi13.cgi13 after (example [email protected]). This means I don't have their proper address and cannot reply to them. I would appreciate any help I can get on this. Thanks in advance!

 

<?
// Get the variables from the form post
$name = $_POST['name'];
$email = $_POST['email'];
$subject = $_POST['subject'];
$message = $_POST['message'];
$from = "From: $name\r\n";

// If there was no Subject submitted, set a default one here
if (!$subject) { $subject = "Message from Website"; }

// Check fields, if they're there, send the email; if not, display error page.
if ($name && $email && $message) {

// Put your email address in place of "[email protected]"
mail("[email protected]", $subject, $message, $from);

// Thank You Page
header("Location: ../contact-thankyou.html");
exit;

} else {

// Error Page
header("Location: ../contact-error.html");
exit;

}
?>

 

Link to comment
https://forums.phpfreaks.com/topic/137665-small-problem-with-contactphp/
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.