Contact Us
If you have a question about any of the software, eBooks or have a comment about our website,
let us know using the contact form below. All fields are required except phone. That is
optional and can be included if you need us to call you. You can also contact us
using the following methods:
Phone: 712-347-5701 † Fax: 866-321-7770
Postal Mail: Five Bucks Network † 3510 North 9th St. Suite 92 †
Carter Lake, IA 51510-1348 USA
';
ContactForm(); exit();
}
?>
OOPS! There are '.$error.' empty fields.';
ContactForm();
exit();
}
echo "
THANKS!
We appreciate you taking the time to contact us. We'll get back with you ASAP. Enjoy
browsing through the rest of the site while waiting.
";
/*
ini_set(SMTP,"mail.websitemanagers.net");
ini_set(smtp_port,"25");
*/
$headers .= "Content-type: text/plain\n";
$headers .= "Return-Path: <".$_POST["contactemail"].">\n";
$headers .= "X-Sender: <".$_POST["contactemail"].">\n";
$Recipient = "sales@fivebucks.net";
$Sender = addslashes($_POST["firstname"])." ".addslashes($_POST["lastname"])." <".addslashes($_POST["contactemail"]).">";
$Subject = "Five Bucks Comments";
$Message = "Submitted on ".date("l m-d-Y")."
Name: ".htmlspecialchars($_POST["firstname"])." ".htmlspecialchars($_POST["lastname"])."
Email: ".htmlspecialchars($_POST["contactemail"])."
Commments: ".htmlspecialchars($_POST["comments"])."
IP Address: ".getenv("REMOTE_ADDR")."
__________________________________";
// now send the mail
//mail($Recipient,$Subject,$Message,"From: ".$Sender."\n".$headers);
mail("sales@fivebucks.net","Five Bucks Comments","Submitted on ".date("l m-d-Y")."
Name: ".htmlspecialchars($_POST["firstname"])." ".htmlspecialchars($_POST["lastname"])."
Email: ".htmlspecialchars($_POST["contactemail"])."
Commments: ".htmlspecialchars($_POST["comments"])."
IP Address: ".getenv("REMOTE_ADDR")."
__________________________________",
"From: ".$_POST["firstname"]." ".$_POST["lastname"]." <".$_POST["contactemail"].">\n".$headers);
?>