Ver Mensaje Individual
  #4 (permalink)  
Antiguo 20/12/2010, 20:34
Rolldi
(Desactivado)
 
Fecha de Ingreso: mayo-2005
Ubicación: España
Mensajes: 471
Antigüedad: 19 años, 10 meses
Puntos: 45
Respuesta: Formulario con PHP me envía todo el código HTML

Utiliza la función mail()
Código PHP:
Ver original
  1. $destinatario='[email protected]';
  2. $asunto ='Asunto del mensaje';
  3. $cuerpo = 'HTML';
  4. $headers='MIME-Version: 1.0\r\n From: Jugade92 <[email protected]>\r\n';
  5. mail($destinatario,$asunto,$cuerpo,$headers)