Robs Héros Wotan.L
Age : 37 alliance : WOTAN Date d'inscription : 25/06/2007
| Sujet: need informaticien Ven 23 Oct - 18:20 | |
| hello! J'ai besoin de vous, je cherche un script. Sur mon site internet j'aimerais faire un formulaire, avec les champs nom, prénom etc... . Ce formulaire, une fois que le visiteur clic sur 'envoyer', j'aimerais qu'il soit envoyé sur ma boite mail. pour sa j'ai essayer de faire sa : - Code:
-
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head> <meta http-equiv="content-type" content="text/html;charset=iso-8859-1"> <meta name="generator" content="Adobe GoLive"> <title>Page sans titre</title> </head>
<body bgcolor="#ffffff"> <form method="POST" action="formmail.php" name="form"> <table border="0"> <tr> <td nowrap="nowrap"><span class="bodyText"><br /> Vous pouvez nous joindre via ce formulaire :</span></td> </tr><tr> <td class="bodyText">Vous êtes: </td> <td><select name="type" size="1"> <option value="particulier">un particulier</option> <option value="une entreprise">une entreprise</option> </select></td> </tr> <tr> <td class="formtext"><b>Nom</b></td> <td> <input type="text" class="input1" name="nom" /></td> </tr> <tr> <td class="formtext">Prénom</td> <td><input type="text" class="input1" name="prenom" /></td> </tr> <tr> <td class="formtext"><b>Ville</b></td> <td><input type="text" class="input1" name="ville" /></td> </tr> <tr> <td class="formtext">Entreprise</td> <td><input type="text" class="input1" name="entreprise" /></td> </tr> <tr> <td class="formtext"><b>E-mail</b></td> <td><input type="text" class="input1" name="email" /></td> </tr> <tr> <td class="formtext">Type de demande</td> <td> <select name="fonction" class="formtext2"> <option value="Commande">Commande</option> <option value="Devis">Devis gratuit</option> <option value="Question">Question</option> <option value="Logiciels">Logiciels</option> </select> </td> </tr> <tr> <td valign="top" class="formtext"><b>Précisez ici votre demande</u></td> <td class="textarea1"><textarea name="message" cols="35" rows="15" class="textarea1"> </textarea></td> </tr>
<tr> <td colspan="2"> <input type="submit" class="formtext2" value="Soumettre" /> <input type="reset" class="formtext2" value="Effacer" /> </td> </tr> </table> </form> </body>
</html> et ma page .php : - Code:
-
<? if(strlen($email)<1){ $mail="robin.schmitt67@gmail.com"; } else { $mail="$email"; } $sujet="$fonction"; $msg="Nom : $nom\nPrénom : $prenom\n Type : $type\n Ville : $ville\n Entreprise : $entreprise\n E-mail: $email\n\nType de demande : $fonction\n\nMessage:\n\n$message"; echo "votre message a été envoyé."; mail("robin.schmitt67@gmail.com","$sujet","$msg","From: $mail\nReply-To: $mail"); mail("$mail","message","la un truc du genre : Votre message a bien ete recu et sera traité dans les plus bref delais","From: robin.schmitt67@gmail.com\nReply-To: robin.schmitt67@gmail.com"); ?> J'ai mis dans le fichier php.ini le serveur smtp de Gmail... si qqun pouvais m'aider. Merciiiii | |
|
Robs Héros Wotan.L
Age : 37 alliance : WOTAN Date d'inscription : 25/06/2007
| Sujet: Re: need informaticien Ven 23 Oct - 21:18 | |
| mouahahah j'ai réusiiiisssss bon après des heures... mais la joie est encore plus intense suffisait de mettre dans le fichier php.ini smtp.free.fr avec le port 25 et bingo. fiouuuu | |
|