PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
<?php
$to = $_REQUEST['sendto'] ;
$from = $_REQUEST['Email'] ;
$name = $_REQUEST['Name'] ;
$headers = "From: $from";
$subject = "Subject goes ehre
$fields = array();
$fields{"Name"} = "Name";
$fields{"Email"} = "Email";
$fields{"Message"} = "Message";
$body = "We have received the following information:\n\n"; foreach($fields as $a => $b){ $body .= sprintf("%20s: %s\n",$b,$_REQUEST[$a]); }
$headers2 = "From: email@email.com";
$subject2 = "Thank you for contacting Company.";
$autoreply = "Thank you for contacting us. Somebody will get back to you as soon as possible, usually within 48 hours. If you have any more questions, please consult our website at http://www.oursite.com";
if($from == '') {print "You have not entered an email, please go back and try again";}
else {
if($name == '') {print "You have not entered a name, please go back and try again";}
else {
$send = mail($to, $subject, $body, $headers);
$send2 = mail($from, $subject2, $autoreply, $headers2);
if($send)
{header( "Location: http://www.oursite.com/thankyou.htm" );}
else
{print "We encountered an error sending your mail, please notify webmaster@oursite.com"; }
}
}
?>
Any ideas???
Last edited by Benjamin on Mon Aug 31, 2009 2:10 pm, edited 1 time in total.
Reason:Changed code type from text to php.
I believe you'll find where you should put this
And sanitize your input! If you use this on a live site, it can be exploited to send spam
Sorry, I am new to this. I grabbed the code from someone else. I have no idea how to 'sanitize' the code or where to insert what you sent me. I wanted to insert a fixed email address for the BCC. Is that possible?
I believe you'll find where you should put this
And sanitize your input! If you use this on a live site, it can be exploited to send spam
Sorry, I am new to this. I grabbed the code from someone else. I have no idea how to 'sanitize' the code or where to insert what you sent me. I wanted to insert a fixed email address for the BCC. Is that possible?