Ver Mensaje Individual
  #2 (permalink)  
Antiguo 12/08/2002, 12:41
Cluster
O_O
 
Fecha de Ingreso: enero-2002
Ubicación: Santiago - Chile
Mensajes: 34.417
Antigüedad: 22 años, 3 meses
Puntos: 129
Re: mail con copia

Mirate la referencia del manual de PHP:

<a href='ir.asp?http://www.php.net/manual/es/function.mail.php' target='_blank'>http://www.php.net/manual/es/function.ma...</a>

Ahi veras ejemplos tanto por parte de PHP .. como por parte de los &quot;user comments&quot; .. leelos q son intesantes y practicos .. como este:


Cita:
$headers .= &quot;From: Name&lt;[email protected]&gt;\n&quot;;
$headers .= &quot;X-Sender: &lt;[email protected]&gt;\n&quot;;
$headers .= &quot;X-Mailer: PHP\n&quot;; //mailer
$headers .= &quot;X-Priority: 3\n&quot;; //1 UrgentMessage, 3 Normal
$headers .= &quot;Return-Path: &lt;[email protected]&gt;\n&quot;;
//Uncomment this to send html format
//$headers .= &quot;Content-Type: text/html; charset=iso-8859-1\n&quot;;
//$headers .= &quot;cc: [email protected]\n&quot;; // CC to
//$headers .= &quot;bcc: [email protected]&quot;; // BCCs to, separete
multiple with commas [email protected], [email protected]

mail ( string para, string sobre, string mensaje [, string cabeceras_adicionales])

Un saludo,