Fixes vim mode line.
[platal.git] / modules / xnetgrp / mail.inc.php
CommitLineData
0337d704 1<?php
2/***************************************************************************
c441aabe 3 * Copyright (C) 2003-2014 Polytechnique.org *
0337d704 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
0337d704 22// {{{ get_all_redirects
23
26ba053e 24function get_all_redirects($membres, $mls, $client)
0337d704 25{
26 global $globals;
eaf30d86 27
0337d704 28 $tos = array();
eaf30d86 29
22c8c0c3 30 // TODO: add more filters to choose users
06db561e 31 if (!empty($membres)) {
1eaaa62d 32 $uf = new UserFilter(new UFC_Group($globals->asso('id')));
22c8c0c3 33 $tos = $uf->getUsers();
0337d704 34 }
35
36 foreach ($mls as $ml) {
5c9c7889
RB
37 // $list_members is a (list_details, members, list_owners) array, where
38 // members is an array of (0 => name, 1 => email) arrays.
39 $list_members = $client->get_members($ml);
40 if ($list_members) {
41 foreach ($list_members[1] as $mem) {
07a85e79 42 $uf = new UserFilter(new UFC_Email($mem[1]));
5c9c7889 43 $user = $uf->getUser();
22c8c0c3
FB
44 if ($user) {
45 $tos[] = $user;
0337d704 46 } else {
22c8c0c3 47 $tos[] = $mem[1];
0337d704 48 }
49 }
50 }
51 }
52
53 return $tos;
54}
55
56// }}}
57// {{{ _send_xnet_mail
58
5b21237d 59function _send_xnet_mail($user, $body, $wiki, $mailer, $replyto = null)
0337d704 60{
22c8c0c3 61 if ($user instanceof PlUser) {
b41fa03a
SJ
62 $dear = $user->isFemale() ? 'Chère' : 'Cher';
63 $lastname = $user->lastName();
64 $firstname = $user->firstName();
22c8c0c3 65 } else {
b41fa03a
SJ
66 $dear = 'Cher(e)';
67 $lastname = '';
68 $firstname = $user;
22c8c0c3 69 }
eaf30d86 70
6f687c92
RB
71 global $globals;
72 $grp_name = $globals->asso('nom');
73 $grp_short = $globals->asso('diminutif');
74
1f759655 75 $text = str_ireplace(array('<cher>', '<nom>', '<prenom>'),
b41fa03a 76 array($dear, $lastname, $firstname), $body);
6f687c92
RB
77 if ($wiki) {
78 $text .= (
79 "\n" .
80 "---- \n" .
81 "Message envoyé pour le groupe [[http://www.polytechnique.net/${grp_short}|${grp_name}]] via les outils de Polytechnique.org \\\\\n" .
82 "[[http://www.polytechnique.net/${grp_short}/annuaire|Annuaire]] | [[http://www.polytechnique.net/${grp_short}/unsubscribe|Se désinscrire]]"
83 );
84 } else {
85 $text .= (
86 "\n" .
87 "---- \n" .
88 "Message envoyé pour le groupe ${grp_name} via les outils de Polytechnique.org\n" .
89 "Annuaire : http://www.polytechnique.net/${grp_short}/annuaire | Désinscription : http://www.polytechnique.net/${grp_short}/unsubscribe"
90 );
91 }
92
c469507d 93 $mailer->setTo($user);
9898b36e 94 if ($replyto) {
95 $mailer->addHeader('Reply-To', $replyto);
96 }
5b21237d 97 if ($wiki) {
98 $mailer->setWikiBody($text);
99 } else {
100 $mailer->setTxtBody(wordwrap($text, 72));
101 }
91a14f73 102 $mailer->send();
0337d704 103}
104
105// }}}
106// {{{ send_xnet_mails
107
5b21237d 108function send_xnet_mails($from, $sujet, $body, $wiki, $tos, $replyto = null, $upload = null, $name = null)
0337d704 109{
bdccfd95 110 global $globals;
0337d704 111 $sent = array();
112
1e33266a 113 $mailer = new PlMailer();
0337d704 114 $mailer->setSubject($sujet);
115 $mailer->setFrom($from);
13627bef 116 if ($upload && $upload->exists()) {
117 $mailer->addUploadAttachment($upload, $name);
91a14f73 118 }
0337d704 119
120 foreach ($tos as $user) {
b1a22c84 121 if ($user instanceof User) {
22c8c0c3
FB
122 $email = $user->bestEmail();
123 } else {
124 $email = $user;
125 }
965221bf
VZ
126
127 if (!isset($sent[$email])) {
128 _send_xnet_mail($user, $body, $wiki, $mailer, $replyto);
129 $sent[$email] = true;
22c8c0c3 130 }
0337d704 131 }
132}
133
134// }}}
135
448c8cdc 136// vim:set et sw=4 sts=4 sws=4 foldmethod=marker fenc=utf-8:
0337d704 137?>