<!-- end footer-->
</td>
</tr>

<tr><td height="30"></td></tr>

</tbody>
</table>
</body>
</html>';
require_once 'mail/class.phpmailer.php';
$asunto = "Bienvenido al APP-CONGRESS";
$mensaje = $html;
$mail = new phpmailer();
$mail->PluginDir = "mail/";
$mail->Mailer = "smtp";
$mail->Host = "mail.registroenlinea.mx";
$mail->SMTPAuth = 1;
$mail->IsSendMail();
$mail->Username = "******";
$mail->Password = "******";
$mail->Port = "2525";
$mail->From = "*****@*****.**";
$mail->FromName = "APP-CONGRESS SMO";
$mail->Timeout = 15;
$mail->AddAddress($graphObject['email']);
$mail->AddBCC("*****@*****.**");
$mail->IsHTML(true);
$mail->Subject = $asunto;
$mail->Body = utf8_decode($mensaje);
$mail->Send();