blob: 08bd73a6ec4b17a2193091d176e0f543a56a2446 [file] [log] [blame]
<?php
$MailDest = "anne.jacko@eclipse.org";
$MailSubject = "EclipseCon 2007 Attendee Survey";
$MailStr = "This information was posted via the form on the EclipseCon website:\n";
foreach ($_POST as $key => $value) {
$MailStr .= $key . ": " . $value . "\n";
}
$MailStr .= "\n";
mail($MailDest, $MailSubject, $MailStr, "From: emo@eclipse.org\n");
header("Location: http://www.eclipsecon.org/2007/index.php?page=survey/surveythankyou");
?>