Bonjour,
j'ai inséré un code html pour faire un simple formulaire de contact et je ne reçois pas les emails
peut être j'ai oublié quelquechose en tout cas là je bloque,
voila le code utilisé sur la page contact
Merci pour vos idées et vos solutions
patrick
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 <FORM ACTION="mailto:info@teleconseil.net" METHOD=POST ENCTYPE="multipart/form-data"> <code> <INPUT TYPE="hidden" VALUE="info@teleconseil.net" NAME="From" SIZE=40> <B>Votre E-mail.:</B><input type="email" name="usremail"> <input type="submit"><form action="demo_form.asp"></form> <BR><B>Nom..........:</B><INPUT NAME="NOM"SIZE=40 > <BR><B>Fonction.....:</B><INPUT NAME="PRENOM"SIZE=40 > <BR><B>Société......:</B><INPUT NAME="SOCIETE"SIZE=40 > <BR><B>Adresse......:</B><INPUT NAME="ADRESSE"SIZE=40 > <BR><B>Téléphone....:</B><INPUT NAME="TEL"SIZE=40> <BR><BR><B>Vous souhaitez joindre un fichier (200 Ko max.) :</B> <BR><INPUT TYPE="hidden" NAME="MAX_FILE_SIZE" VALUE="204800"> <INPUT TYPE="file" NAME="fichier" SIZE=45> <BR><BR><B>Votre message :</B> <BR><TEXTAREA NAME="COMMENTS" COLS=60 ROWS=6></TEXTAREA> <BR><INPUT TYPE=submit VALUE="Envoyer" onclick="alert('Teleconseil.net vous remercie et vous contacte rapidement pour répondre à votre demande !')"> <INPUT TYPE="reset" VALUE="Effacer"> </code> </FORM>
Partager