Algo así.
Código PHP:
Ver original<?php
// Datos del email
$nombre_origen = "REMITENTE";
$email_origen = "email@del_remitente.com";
$email_copia = "email@del_remitente.com";
$email_ocultos = "email@del_remitente.com";
$email_destino = "email@de_destino.com";
$asunto = "Asunto del email";
$mensaje = '
Acá el mensaje <br>
<br>
Etcétera.
';
$formato = "html";
//*****************************************************************//
$headers = "From: $nombre_origen <$email_origen> \r\n";
$headers .= "X-Priority: 3 \r\n";
$headers .= "MIME-Version: 1.0 \r\n";
$headers .= "Content-Transfer-Encoding: 7bit \r\n";
//*****************************************************************//
if($formato == "html")
{ $headers .= "Content-Type: text/html; charset=iso-8859-1 \r\n"; }
else
{ $headers .= "Content-Type: text/plain; charset=iso-8859-1 \r\n"; }
if (@mail($email_destino, $asunto, $mensaje, $headers)) { };
?>
Saludos.