1<?php
2include('../Code/confHeader.inc');
3$_SESSION[Me] -> goIfInvalid("../index.php");
4$_SESSION[Me] -> goIfNotChair('../index.php');
5$Conf -> connect();
6?>
7
8<html>
9
10<?php  $Conf->header("Send Mail To Various Groups Of People") ?>
11
12<body>
13
14<FORM METHOD="POST" ACTION="SendMail2.php">
15
16<p> <input type="submit" value="Prepare Mail" name="submit"> </p>
17
18
19<p> Select the parties to whom you wish to send mail:
20<SELECT name=recipients>
21
22<OPTION value="submit-not-finalize">
23People who submited, but didn't finalize a paper.
24</OPTION>
25
26<OPTION value="submit-and-finalize">
27People who submited AND finalized a paper
28</OPTION>
29
30<OPTION value="asked-to-review">
31People who were ASKED (<i> started or not </i>) to review a paper and have not finalized that review
32</OPTION>
33
34<OPTION value="review-not-finalize">
35People who STARTED a paper review and DID NOT finalize that review
36</OPTION>
37
38<OPTION value="author-accepted">
39Contacts for papers selected for the conference
40</OPTION>
41
42<OPTION value="author-rejected">
43Contacts for papers <b> not </b> selected for the conference
44</OPTION>
45
46<OPTION value="review-finalized">
47Anyone who reviewed a paper and finalized that review
48</OPTION>
49
50<OPTION value="author-late-review">
51Anyone who received late reviews.
52</OPTION>
53
54</SELECT>
55</p>
56
57<p> Now, type the email you want to send. You can use %TITLE%
58to refer to the paper title, %NUMBER% to refer to the paper number.
59The authors name is %FIRST%, %LAST% and %EMAIL%.
60</p>
61
62<textarea rows=30 name="emailBody" cols=75></textarea>
63
64<p> <input type="submit" value="Prepare Mail" name="submit"> </p>
65
66</FORM>
67
68</body>
69<?php  $Conf->footer() ?>
70</html>
71
72
73