Je fait un programme en vb qui peu envyoer des mail html, mais pour sa je passe parle php, je comprend pas pourquoi la page html se fait pas quand le mail a ete envoyer.
----------------------code----------------------
<?php
$mail_body = htmlspecialchars ($mail_body);
$headers .= "MIME-Version: 1.0 \n";
$headers .= "Content-type: text/html; charset=iso-8859-1 \n";
$headers .=
"from:$mail_from\r\nCc:$mail_cc\r\nBcc:$mail_bcc";
mail($mail_to, $mail_subject, $mail_body, $headers);
?>
------------------------------------------------
Le vrai code que j´essai déditer cest lui http://www.phpcs.com/code.aspx?id=26426