Ver Mensaje Individual
  #6 (permalink)  
Antiguo 17/02/2012, 22:22
ShadowRock
 
Fecha de Ingreso: noviembre-2011
Mensajes: 11
Antigüedad: 12 años, 5 meses
Puntos: 0
Respuesta: Funcion Mail(); Problemilla

Solucion :

Código Javascript:
Ver original
  1. $Headers = "Content-Type: text/html; charset=\"utf-8\"\n";
  2. $Remitente = "[email protected]";
  3. $Asunto = "Tienes una nueva consulta";
  4. $Texto = wordwrap($Texto,70);
  5.  
  6. $Cuerpo = '<table><tr><td width="500" height="275"><img src="http://laentreviasrock.com/Photo%20Banner.jpg" width="650" height="200" /></td></tr><tr><td height="40">Mail: '.$Mail.'</td></tr><tr><td height="60">'.$Texto.'</td></tr></table>';
  7.  
  8. /* --- Mail --- */
  9. mail($Remitente,$Asunto,$Cuerpo,$Headers);