Bonjour,

Je voudrai envoyer le résultat de plusieurs formulaires par mail. Le code suivant marche très bien (si on remplace xxx@xxx.fr par une véritable adresse mail)

MON CODE :

Code : Sélectionner tout - Visualiser dans une fenêtre à part
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
<body>
<div
 style="text-align: center; font-family: Arial; color: rgb(255, 102, 0);"><span
 style="font-weight: bold; color: rgb(153, 153, 153);"></span><span
 style="font-weight: bold;"><span style="color: black;"><br>
</span></span></div>
<form action="mailto:xxx@xxx.fr" method="get">
  <div align="center">
  <center>
  <table border="0">
    <tbody>
      <tr>
        <td>
        <div align="right">
        <p>Question 1 : <input name="body" size="40"
 type="text"><br>
        </p>
        </div>
        <div align="center">
        <center>
        <p><input value="envoyer le mot avec ma messagerie"
 type="submit"><input value="Effacer" type="reset"></p>
        </center>
        </div>
        </td>
      </tr>
    </tbody>
  </table>
  <br>
  <big style="font-family: Arial; color: silver;"><span
 style="font-weight: bold;"><small><small><small><span
 style="color: rgb(255, 102, 0);"></span></small></small></small></span></big><br>
  </center>
  </div>
</form>
</body>
Je n'arrive pas à intégrer d'autres questions à ce code (Question 2, Question 3...), et arriver à envoyer par mail toutes ces réponses.
Pouvez vous m'éclairer ?