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 originalfunction GenCodeHTMLRC($Cod, $User, $Name) {
$CodeHTML = "
<html>
<head>
<title>Activar Cuenta Qiubox Guatemala</title>
<style>
body {
background:#dedede;
margin:0px;
font: 80%/1.4 'Lucida Grande', Verdana, sans-serif;
}
table {
margin:10px;
}
</style>
</head>
<body>
<table width='490' border='0' cellspacing='2' cellpadding='2'>
<tr>
<td>Que tal ".$Name." Para recuperar tu contraseña as click en el siguiente enlace.</td>
</tr>
<tr>
<td><a href='http://kiubo.desonlinegt.com/?ref=Forgot&cod=".$Cod."&us=".$User."'>Click Aqui.!</a></td>
</tr>
</table>
</body>
</html>";
return $CodeHTML;
}