Quand je créer un formulaire dans dreamweaver et que je le teste dans internet explorer il marche ensuite j'ai un premier message disant que mon message n'est pas crypté et qu'il y un risque que on choppe mon mail tout ca... ensuite une petite fenetre de confirmation apparait, elle a comme titre outlook express et je remarque quand dans le champs "A:" il n'est rien marqué alors que j'ai bien mis dans mon formulaire "mailto:mon adresse email" et j'ai bien mis "text/plain"..
et donc quand j'essaye de m'envoyer ca je ne recois rien..
Y a t'il des paramètre spéciaux a la configuration d'outlook pour pouvoir envoyer des forulaire avec un mailto? Voila mon code. Merci d'avance..
<html>
<head>
<title>Document sans titre</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<form action="mailto:dioxinge@hotmail.com" method="post" enctype="text/plain" name="Form" id="Form">
<table width="100%" height="206" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="11%">Nom:</td>
<td width="89%"><input name="Nom" type="text" id="Nom" size="50"></td>
</tr>
<tr>
<td>Prénom:</td>
<td><input name="Prenom" type="text" id="Prenom" size="50"></td>
</tr>
<tr>
<td>Age:</td>
<td><input type="radio" name="Age" value="Moinsde25ans">
Moins de 25 ans
<input type="radio" name="Age" value="Plusde25 ans">
Plus de 25 ans</td>
</tr>
<tr>
<td>Pays:</td>
<td><select name="Pays" id="Pays">
<option value="BE">Begique</option>
<option value="FR">France</option>
<option value="CA">Canada</option>
<option value="ES">Espagne</option>
<option>___________</option>
</select></td>
</tr>
<tr>
<td>Commentaire:</td>
<td><textarea name="Commentaire" cols="50" id="Commentaire"></textarea></td>
</tr>
<tr>
<td> </td>
<td><input name="Envoyer" type="submit" id="Envoyer" value="Envoyer">
<input name="Effacer" type="reset" id="Effacer" value="Effacer"></td>
</tr>
</table>
</form>
</body>
</html>