$sfrom="
[email protected]";
$ssubject="Asunto el que quieras";
$shtml="Texto del correo";
$sheader="From:".$sfrom."\nReply-To:".$sfrom."\n";
$sheader=$sheader."X-Mailer:PHP/".phpversion()."\n";
$sheader=$sheader."Mime-Version: 1.0\n";
$sheader=$sheader."Content-Type: text/html";
mail('
[email protected]',$ssubject,$shtml, $sheader);
Salu2