Communication'; $action = ''; if(array_key_exists('action', $_POST)) { $action = $_POST['action']; } else if(array_key_exists('action', $_GET)) { $action = $_GET['action']; } $from_name = array('email_chair' => $config['fair_abbreviation']." Chair", 'email_chiefjudge' => $config['fair_abbreviation']." Chief Judge", 'email_ethics' => $config['fair_abbreviation']." Ethics", 'email_registration' => $config['fair_abbreviation']." Registration"); $from_email = array('email_chair' => $from_name['email_chair']." <".$config['email_chair'].">", 'email_chiefjudge' => $from_name['email_chiefjudge']." <".$config['email_chiefjudge'].">", 'email_ethics' => $from_name['email_ethics']." <".$config['email_ethics'].">", 'email_registration' => $from_name['email_registration']." <".$config['email_registration'].">", 'specify_email' => "Other - Enter the from email name and address below"); switch($action) { case 'new': $eid = email_create($mysqli); case 'edit': if($action == 'new') { /* Fell through from above, leave eid alone */ } else { $eid = (int)$_GET['eid']; if($eid == 0) exit(); } /* load available categories */ $sections = array(); $q = $mysqli->query("SELECT DISTINCT(`section`) AS S FROM emails ORDER BY `section`"); while($s = $q->fetch_assoc()) { $sections = $s['S']; } sfiab_page_begin($u, "Edit Email", $page_id.'_edit', $help); ?>

Edit Email

$val) { if($e['from_name'] == $val) { $email_key = $key; break; } } ?>

Email Replacement Keys

Replacement Keys can be used in the subject and body of the email.

>
Cancel
0, 'location'=>'back')); exit(); case 'delete': $eid = (int)$_POST['eid']; if($eid == 0) exit(); $e = email_load($mysqli, '', $eid); if($e['section'] == 'System') exit(); $q = $mysqli->real_query("DELETE FROM emails WHERE id='$eid'"); form_ajax_response(array('status'=>0, 'location'=>'back')); exit(); }; sfiab_page_begin($u, "Send Emails", $page_id, $help); $emails = array(); $q = $mysqli->query("SELECT * FROM emails ORDER BY `section`,`name` "); while($e = $q->fetch_assoc()) { $emails[] = $e; } ?>

Actions

Send / Edit Emails

Click on an email below to send it. You'll be shown the full email text and have to confirm who to send it to before it actually sends. Click on the gear icon on the right of each email to edit or delete it.