Código PHP:
<?php
$sfrom="[email protected]"; //cuenta que envia
$sdestinatario="[email protected]"; //cuenta destino
$ssubject="hola"; //subject
$shtml="hola amigo!"; //mensaje
$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($sdestinatario,$ssubject,$shtml,$sheader);
?>
pero sale el siguiente error:
Warning: Failed to Receive in c:\pruebaphp\email.php on line 10 ( line 10 : mail ($destinatario, $...) ; )
que mas se necesita, a que se debe el error? help!