Bonjour,

Je débute en HTML et je confectionne un formulaire.Lorsque je clique sur le bouton Envoyer (il est censé envoyer les enregistrements vers mon adresse e-mail) m'envoie vers une fenêtre Outlook. Je voudrai ne plus avoir cette fenêtre et envoyer les informations directement.

Merci d'avance

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
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
63
64
65
66
67
68
69
70
 
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Document sans nom</title>
<link href="styles.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div class="cadre">
        <div class="head" >
        <img src="banner_minilivre.jpg" alt="banniere" width="765" height="180" />
        </div>
  <div class="menu" >
<ul id="menu">
          <li><a href="index.html">Acceuil</a></li>
          <li><a href="localisation.html">Localisation</a></li>
      <li><a href="galerie.html">Galerie</a></li>
      <li><a href="tarif.html">Tarif</a></li>
      <li><a href="aide.html">Aide</a></li>
      <li><a href="contact.html">Contact</a></li>
    </ul>
  </div>
        <div class="centre" >
          <form  method="post" action=" mailto: xxxxx@hotmail.com">
 
            <table width="500" border="0">
              <tr>
                <th scope="col">Nom</th>
                <th scope="col"><input name="nom" type="text" /></th>
              </tr>
              <tr>
                <th scope="row">Prénom</th>
                <td><div align="center">
                  <input name="prenom" type="text" />
                </div></td>
              </tr>
              <tr>
                <th scope="row"><label>Adresse e-mail</label></th>
                <td><div align="center">
                  <input name="email" type="text" />
                </div></td>
              </tr>
            </table>
            <br />
            <table  width="400" border="0" align="center">
              <tr>
                <td><strong>Message à transmettre</strong><br /></td>
              </tr>
              <tr>
              <td>
                <textarea name="txtmessage" id="txtmessage" cols="70" rows="5"></textarea></td>
              </tr>
              <tr>
              	<td>
                <input name="Btnenvoi" TYPE= SUBMIT value="Envoyer" /> <br/>
                <input name="btnvide" type= Reset value="Remettre à zéro" />
                </td>
               </tr>
            </table>
 
 
          </form>
 
        </div>
</div> 
 
</body>
</html>