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
|
<form method="post" action="index.php?page=envoi_mail">
<table>
<tr>
<td>
Mail de :
</td>
<td colspan="3">
<select name="expediteur">
<option value="1">Item1>/option>
</select>
</td>
</tr>
<tr>
<td>
Pour :
</td>
<td colspan="3">
<select name="liste_dest[]" multiple="multiple">
<option value="1">Item1>/option>
....
</select>
</td>
</tr>
<tr>
<td>
Sujet du mail :
</td>
<td colspan="3">
<input type=text name="sujet" />
</td>
</tr>
<tr>
<td>
Contenu :
</td>
<td colspan="3">
<textarea name="commentaires" cols="50" rows="5">Informations à envoyer aux membres sélectionner</textarea>
</td>
<tr>
<td>
</td>
<td>
<input type="submit" value="Envoyer" />
</td>
<td>
<input type="reset" value="Effacer" align="center" />
</td>
<td>
<input type="button" value="Retour" onclick="document.open('index.php?page=membre','_self','');" />
</td>
</tr>
</table>
</form> |