1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
| $destinataire = 'mail1@toto.fr';
$sujet = 'test';
$contenu = '<html><head><title>Titre du message</title></head><body>';
$contenu .= '<p>Bonjour, vous avez reçu un message </p>';
$contenu .= '</body></html>';
// Pour envoyer un email HTML, l'en-tête Content-type doit être défini
$headers = 'MIME-Version: 1.0'."\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1'."\r\n";
$headers .= "Bcc: <a href="mailto:mail2@toto.fr">mail2@toto.fr</a>" . "\r\n";
// Envoyer l'email
mail($destinataire, $sujet, $contenu, $headers);
echo "<script language='Javascript'>document.location='test10.php'</script>"; |
Partager