Realizo un email con PHP del siguiente modo:
Código PHP:
$sfrom="[email protected]";
$txmail="[email protected]";
$header="From:".$sfrom."\nReply-To:".$sfrom."\n";
$header=$header."X-Mailer:PHP/".phpversion()."\n";
$header=$header."Mime-Version: 1.0\n";
$header=$header."Content-Type: text/html";
$txtema=$asunto."Nuevo pedido número: $identificador_pedido";
$mensaje1="<html>"."\n";
$mensaje1=$mensaje1."<cuerpo del mensaje>"."\n";
Gracias de antemano