Contact us
We would love to hear from you. If you have Greene County information to contribute or if you just want to say "hi", just fill out this form and we will be back with you shortly.
You will receive a confirmation e-mail that your message has been sent. Please do NOT use AOL or Hotmail e-mail addresses because your confirmation e-mail will bounce and your message may not make it to us.
//================================================
// Mailcode is copyright (c)2007, Scott J. LeCompte
//
// Released 02/26/2008 under GNU Public Licensing
// Terms. Free to use, modify, and distribute.
//
// Support available at http://www.myphpscripts.net
//================================================
// Your e-mail address
$to = "feedbak@greeneoh.ancestralsites.com";
// "Subject:" line in the e-mail
$subject = "Greene County OHGenWeb Feedback";
// Date format
$date = date ("l, F jS, Y");
// Time format
$time = date ("h:i A");
// Message at the beginning of the e-mail body
$intro = "Below is the result of your feedback form. It was submitted on $date at $time.\n\n";
// Enable/Disable form validation: Set to 1 to enable, set to 0 to disable
$formval = 1;
// Enable/Disable email address validation: Set to 1 to enable, set to 0 to disable
$emailval = 1;
// Enable/Disable logging: Set to 1 to enable, set to 0 to disable
$logging = 0;
// Enable/Disable file attachments: Set to 1 to enable, set to 0 to disable
$attachments = 0;
// Acceptable file types
$file_types = array(
"jpe",
"jpg",
"jpeg",
"gif",
"bmp",
"png",
"avi",
"mpg",
"mpeg",
"mov",
"ram",
"qt",
"au",
"wav",
"mid",
"midi",
"wmv",
"mp3",
"ra",
"flv",
"txt",
"doc",
"xls",
"ppt",
"zip",
"tar",
"tgz",
"gz",
"gzip",
"rar",
);
// Number of file upload fields
$uploads = 3;
// Maximum file size for attachments (measured in bytes)
$max_file_size = 2048000;
// path to your logfile directory
$logpath = "/contact/logs/";
?>