je teste a envoyer un email depuis mon localhost et ca ne marche pas:
Erreur:
et voila le code:Ce script envoie un mail à [email protected]
Warning: mail() [function.mail]: "sendmail_from" not set in php.ini or custom "From:" header missing in D:\Projet\Site\xampp\htdocs\Sites\Apprendre\mail\mail.php on line 6
<html>
<body>
<?php
$destinataire = "[email protected]";
echo "Ce script envoie un mail à $destinataire";
mail($destinataire, "test email 1", "merci pour ton tutorial");
?>
</body>
</html>
[/quote]