fcc6a4bbe0efa96e66a294248ea1f4a874ec3b97
[platal.git] / templates / xnet / groupe / mail.tpl
1 {**************************************************************************}
2 {*                                                                        *}
3 {*  Copyright (C) 2003-2004 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
23
24 <h1>{$asso.nom} : Envoyer un mail</h1>
25
26 <p class="descr">
27 Ton message peut être personnalisé : si tu rentres les mots &lt;cher&gt;, &lt;prenom&gt;,
28 &lt;nom&gt;, ces mots seront remplacés, pour chacun des destinataires, par "cher" accordé au
29 masculin ou féminin, par son prénom, ou son nom.
30 </p>
31  
32 <form action="{$smarty.server.PHP_SELF}" method="post">
33   <table class='large'>
34     <tr>
35       <th colspan="2">Ecrire un mail :</th>
36     </tr>
37     <tr>
38       <td class="titre">Expéditeur :</td>
39       <td>
40         <input type="text" name="from" size="55" maxlength="70"
41           value="{if $smarty.request.from}{$smarty.request.from}{else}&quot;{$smarty.session.prenom} {$smarty.session.nom}&quot; <{$smarty.session.bestalias}@polytechnique.org>{/if}" />
42       </td>
43     </tr>
44
45     <tr>
46       <th colspan="2">Destinataires</th>
47     </tr>
48     <tr valign="top">
49       <td style='padding-left: 1em' class='titre'>
50         *&nbsp;<em>membres</em>
51       </td>
52       <td>
53         <input type="checkbox" name="membres" value="1" {if $smarty.request.membres}checked="checked"{/if} />
54         <em>écrit à tous les membres du groupe</em> <a href="annuaire.php" class='popup'>(voir membres)</a>
55       </td>
56     </tr>
57
58     {foreach from=$listes item=l}
59     <tr>
60       <td style='padding-left: 1em' class='titre'>
61         *&nbsp;{$l.list}
62       </td>
63       <td>
64         <input type="checkbox" name="ml[{$l.list}]" value="1" {if $smarty.request.ml[$l.list]}checked="checked"{/if} />
65         {$l.addr}
66         <a href="listes-admin.php?liste={$l.list}" class="popup">(voir composition)</a>
67       </td>
68     </tr>
69     {/foreach}
70
71     {* NOT SUPPORTED ATM
72     {foreach from=$alias item=a}
73     {assign var=b value=$a|regex_replace:"!@.*!":""}
74     <tr>
75       <td style='padding-left: 1em' class='titre'>
76         *&nbsp;{$b}
77       </td>
78       <td>
79         <input type="checkbox" name="al[{$b}]" value="1" {if $smarty.request.al[$b]}checked="checked"{/if} />
80         {$a} <a href="alias-admin.php?liste={$b}" class='popup'>(voir composition)</a>
81       </td>
82     </tr>
83     {/foreach}
84     *}
85
86     <tr>
87       <th colspan="2">Contenu du mail</th>
88     </tr>
89     <tr>
90       <td class="titre">
91         Sujet :
92       </td>
93       <td><input type="text" name="sujet" value="{$smarty.request.sujet|default:"remplir le sujet ..."}" size=55 maxlength=70></td>
94     </tr>
95     <tr>
96       <td colspan="2">
97         <textarea name="body" cols="72" rows="25">{if $smarty.request.body}{$smarty.request.body}{else}  &lt;cher&gt; &lt;prenom&gt;,
98           
99   Nous avons le plaisir de t'adresser la lettre mensuelle du groupe {$asso.nom}.
100
101   (insérer le texte...)
102
103   Le bureau du groupe {$asso.nom}.{/if}
104 </textarea>
105       </td>
106     </tr>
107     <tr>
108       <td colspan="2" align="center"><input type="submit" name="send" value="Envoyer le message"></td>
109     </tr>
110   </table>
111 </form>
112
113 {* vim:set et sw=2 sts=2 sws=2: *}