-
Notifications
You must be signed in to change notification settings - Fork 4
/
mailing.inc.php
127 lines (105 loc) · 3.62 KB
/
mailing.inc.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<?php
require_once('manage_users.inc.php');
require_once('manage_rapports.inc.php');
require_once('utils.inc.php');
function mailRapporteur($titre, $body, $email_fin, $rapporteur)
{
$reports = getTodoReports($rapporteur);
if(count($reports) > 0)
{
echo 'Envoi d\'un email pour '.count($reports).' rapports pour "'.$rapporteur->description.'" ('.$rapporteur->email.')<br/>';
foreach($reports as $report)
{
$body .= reportShortSummary($report)."\r\n";
$body .= $email_fin;
email_handler($rapporteur->email, $titre, $body);
}
}
else
{
echo 'Pas d\'email pour "'.$rapporteur->description.'"<br/>';
echo 'Avec les rapports '.$body;
}
}
function mailAll($titre, $body, $email_fin )
{
$users = listUsers();
foreach($users as $rapporteur)
mailRapporteur($titre,$body,$email_fin, $rapporteur);
}
function mailIndividualRapporteur($email_titre, $email_body, $email_fin, $rapporteur)
{
$users = listUsers();
if(isset($users[$rapporteur]))
mailRapporteur($email_titre, $email_body, $email_fin, $users[$rapporteur]);
else
throw new Exception("Could not send email, no rapporteur with name \"".$rapporteur."\"");
}
$email_titre = "[conrs section ".currentSection()."] liste de vos rapports";
$email_body ="Bonjour,\r\n\r\n\r\n\t veuillez trouver ci-dessous la liste des rapports pour lesquels ";
$email_body .= "vous avez été désigné comme rapporteur et qui ne sont pas encore édités.\r\n\r\n\r\n\r\n";
$email_fin = "\r\n\r\n\r\n\r\nMerci de vous connecter à l'application Marmotte\r\n";
$email_fin .= "\t".get_config("addresse_du_site")."\r\npour y éditer vos rapports ";
$email_fin .= "avant le 01/01/2013. Bon courage!\r\n\r\nAmicalement, le bureau de la section.\r\n";
$users = simpleListUsers();
$action = isset($_REQUEST["action"]) ? real_escape_string($_REQUEST["action"]) : "";
if($action == 'email_rapporteurs')
{
$rapporteur = isset($_REQUEST['rapporteur']) ? real_escape_string($_REQUEST['rapporteur']) : "";
$email_body = isset($_REQUEST['email_body']) ? real_escape_string($_REQUEST['email_body']) : "";
$email_fin = isset($_REQUEST['email_fin']) ? real_escape_string($_REQUEST['email_fin']) : "";
$email_titre = isset($_REQUEST['email_titre']) ? real_escape_string($_REQUEST['email_titre']) : "";
try
{
if($rapporteur == 'allusers')
mailAll($email_titre, $email_body, $email_fin);
else
mailIndividualRapporteur($email_titre, $email_body, $email_fin, $rapporteur);
}
catch(Exception $exc)
{
echo 'Error when sending emails: '.$exc->getMessage().'<br/>';
}
}
//no break on purpose
?>
<h2>Rapports en attente</h2>
<p>
<?php
echo listOfAllVirginReports();
?>
</p>
<h2>Mailing</h2>
<form enctype="multipart/form-data" action="index.php" method="post">
<input type="hidden" name="action" value="email_rapporteurs" />
<p>
<table border="0">
<td>Recipients</td>
<td style="width: 30em;"><select name="rapporteur"
style="width: 100%;">
<?php
echo "\t\t\t\t\t<option value=\"allusers\" selected=\"selected\" >All Users</option>\n";
foreach($users as $user => $data)
echo "\t\t\t\t\t<option value=\"".($user)."\">".$data."</option>\n";
?>
</select>
</td>
<tr>
<td>Subject</td>
<td><input type="text" name="email_titre" size="80" value="<?php echo $email_titre;?>" /></td>
</tr>
<tr>
<td>Debut</td>
<td><textarea rows="6" cols="80" name="email_body"><?php echo $email_body;?></textarea></td>
</tr>
<tr>
<td>Fin</td>
<td><textarea rows="6" cols="80" name="email_fin"><?php echo $email_fin;?></textarea></td>
</tr>
</table>
</td>
</p>
<p>
<input type="submit" value="Envoyer les emails"> </input>
</p>
</form>