Jump to content

form


ultratek

Recommended Posts

i was wondering what is wrong with this

the same version of this script works on my dads site.

i wanted to do the same with my site, all i changed was the smtp address and took out the echo

here is my dads script:

<?php
ini_set("SMTP","bosmail.nt.com");
$name = $_POST['name'];
$phone = $_POST['phone'];
$email = $_POST['email'];
$subject = $_POST['subject'];
$comments = $_POST['comments'];

$name = $name; //senders name
$email = $email; //senders e-mail adress
$recipient = "[email protected]"; //recipient
//$recipient = "[email protected]"; //recipient
//$recipient = "[email protected]"; //recipient

$comments = "$comments...\n\n".$phone;
$subject = $subject; //subject
$header = "From: ". $name . " <" . $email . ">\r\n"; //optional headerfields

mail($recipient, $subject, $comments, $header); //mail command 

echo "Mail has been sent successfully.";

?>

 

 

And my script:

<?php
ini_set("SMTP","smtp1.easycgi.com");
$name = $_POST['name'];
$email = $_POST['email'];
$phone = $_POST['phone'];
$subject = $_POST['subject'];
$comments = $_POST['comments'];

$name = $name; //senders name
$email = $email; //senders e-mail adress
$recipient = "[email protected]"; //recipient
//$recipient = "[email protected]"; //recipient
//$recipient = "[email protected]"; //recipient

$comments = "$comments...\n\n".$phone;
$subject = $subject; //subject
$header = "From: ". $name . " <" . $email . ">\r\n"; //optional headerfields

mail($recipient, $subject, $comments, $header); //mail command 


?>

Link to comment
https://forums.phpfreaks.com/topic/126505-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.