c´est la fonction mail() de php donc c´est pas a mettre dans un mail envoye part thundferbird ou outlook :
<html>
...
<?php
$mail_html = ´MIME-Version: 1.0´ . "\r\n";
$mail_html .= ´Content-type: text/html; charset=iso-8859-1´ . "\r\n";
$mail_html .= "From:toi@fai.com" . "\r\n";
mail("un_homme@fai.com", "Petit coucou", "Salt, ça va et toi", $mail_html);
?>
</body>
...