blob: d82d24fd904e183bca9de6c322515d05c836b7d8 [file] [log] [blame]
<?php
$MailDest = "anne.jacko@eclipse.org";
$MailSubject = "EclipseCon 2006 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/2006/Survey.do?thankyou");
?>