Ver Mensaje Individual
  #3 (permalink)  
Antiguo 13/06/2010, 13:08
Avatar de Master_raven
Master_raven
 
Fecha de Ingreso: junio-2008
Ubicación: Guatemala City, Guatemala, Guatemala
Mensajes: 95
Antigüedad: 15 años, 10 meses
Puntos: 3
Respuesta: Mail con PHPMailer no funciona

Funciona pero solo a los mail de mi hosting, cuando envio uno a hotmail, gmail o yahoo no funciona

el codigo HTML del mensaje lo genero asi

Código PHP:
Ver original
  1. function GenCodeHTMLRC($Cod, $User, $Name) {
  2. $CodeHTML = "
  3. <html>
  4. <head>
  5. <title>Activar Cuenta Qiubox Guatemala</title>
  6. <style>
  7. body {
  8.     background:#dedede;
  9.     margin:0px;
  10.     font: 80%/1.4  'Lucida Grande', Verdana, sans-serif;
  11. }
  12.  
  13. table {
  14. margin:10px;
  15. }
  16. </style>
  17. </head>
  18. <body>
  19. <table width='490' border='0' cellspacing='2' cellpadding='2'>
  20.  <tr>
  21.    <td>Que tal ".$Name." Para recuperar tu contraseña as click en el siguiente enlace.</td>
  22.  </tr>
  23.  <tr>
  24.    <td><a href='http://kiubo.desonlinegt.com/?ref=Forgot&amp;cod=".$Cod."&amp;us=".$User."'>Click Aqui.!</a></td>
  25.  </tr>
  26. </table>
  27. </body>
  28. </html>";
  29. return $CodeHTML;
  30. }