blob: d14492e9686251dbf180110fa052195f4d19cc44 [file] [log] [blame]
<?php
$MailDest = "erin@meetingstrategiesworldwide.com,osp.nominations@eclipse.org";
$MailSubject = "EclipseCon OS Pavillion Agreement";
$MailStr = "This information was posted via the form on the EclipseCon website:\n";
foreach ($_POST as $key => $value) {
$MailStr .= $key . ": " . $value . "\n";
}
$MailStr .= "\nPlease verify this information and contact the speaker\nif there are any inconsistencies or if the\nspeaker did not agree to all the necessary conditions.\n";
mail($MailDest, $MailSubject, $MailStr, "From: bjorn.freeman-benson@eclipse.org\n");
header("Location: http://www.eclipsecon.org/2006/OSPavillionAgreement.do?thankyou");
?>