Ver Mensaje Individual
  #4 (permalink)  
Antiguo 15/02/2012, 22:30
Avatar de memoadian
memoadian
Colaborador
 
Fecha de Ingreso: junio-2009
Ubicación: <?php echo 'México'?>
Mensajes: 3.696
Antigüedad: 14 años, 10 meses
Puntos: 641
Respuesta: Funcion Mail(); Problemilla

Pues hay que esforzarse un poquito más :)

Código PHP:
Ver original
  1. // cabeceras html
  2. $headers  = 'MIME-Version: 1.0' . "\r\n";
  3. $headers .= 'Content-type: text/html; charset=utf-8' . "\r\n";
  4. // Adicionales
  5. $headers .= 'From: Empresa <[email protected]>' . "\r\n";
  6. $message  = "Este es el mensaje con <strong>html</strong>";
  7. mail("[email protected]", "Notificacion", $message, $headers);