a ver si esto te sirve:
Código PHP:
<?php
$sfrom="[email protected]"; //cuenta que envia
$sdestinatario="PABLITO"; //cuenta destino
$ssubject="Registro de tu cuenta"; //subject
$shtml="<body>
password: <b>" . $password . ":</b><br>usuario: <b>" . $usuario . ":</b>
<br>
<br>
Saludos<br>
</body>";//final del mensaje
$sheader="From:".$sfrom;
$sheader=$sheader."X-Mailer:PHP/".phpversion()."\n";
$sheader=$sheader."Mime-Version: 1.0\n";
$sheader=$sheader."Content-Type: text/html";
mail($sdestinatario,$ssubject,$shtml,$sheader);
?>
Espero que te sirva :s no se si lo puse bien, pero algo asi es..! ;)