Enables emails for other types of users.
[platal.git] / modules / admin / homonyms.inc.php
1 <?php
2 /***************************************************************************
3 * Copyright (C) 2003-2011 Polytechnique.org *
4 * http://opensource.polytechnique.org/ *
5 * *
6 * This program is free software; you can redistribute it and/or modify *
7 * it under the terms of the GNU General Public License as published by *
8 * the Free Software Foundation; either version 2 of the License, or *
9 * (at your option) any later version. *
10 * *
11 * This program is distributed in the hope that it will be useful, *
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
14 * GNU General Public License for more details. *
15 * *
16 * You should have received a copy of the GNU General Public License *
17 * along with this program; if not, write to the Free Software *
18 * Foundation, Inc., *
19 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *
20 ***************************************************************************/
21
22 function select_if_homonym(PlUser $user) {
23 return XDB::fetchOneCell('SELECT email
24 FROM email_source_account
25 WHERE uid = {?} AND expire IS NOT NULL',
26 $user->id());
27 }
28
29 function send_warning_homonyme(PlUser $user, $loginbis) {
30 global $globals;
31 $cc = "support+homonyme@" . $globals->mail->domain;
32 $FROM = "\"Support Polytechnique.org\" <$cc>";
33 $mymail = new PlMailer();
34 $mymail->setFrom($FROM);
35 $mymail->addCc($cc);
36 $mymail->setSubject("Dans 2 semaines, suppression de $loginbis@" . $user->mainEmailDomain());
37 $mymail->setTxtBody(Env::v('mailbody'));
38 $mymail->sendTo($user);
39 }
40
41 function send_robot_homonyme(PlUser $user, $loginbis) {
42 global $globals;
43 $cc = "support+homonyme@" . $globals->mail->domain;
44 $FROM = "\"Support Polytechnique.org\" <$cc>";
45 $mymail = new PlMailer();
46 $mymail->setFrom($FROM);
47 $mymail->setSubject("Mise en place du robot $loginbis@" . $user->mainEmailDomain());
48 $mymail->addCc($cc);
49 $mymail->setTxtBody(Env::v('mailbody'));
50 $mymail->sendTo($user);
51 }
52
53 // vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
54 ?>