" Here</a> to validate you account";
Message msg = new MimeMessage(mailSession);
Multipart mp = new MimeMultipart();
MimeBodyPart htmlPart = new MimeBodyPart();
htmlPart.setContent(msgBody, "text/html");
mp.addBodyPart(htmlPart);
msg.setContent(mp);
msg.setFrom(new InternetAddress("admin@stewiemaze.appspotmail.com"));
msg.addRecipient(Message.RecipientType.TO,
new InternetAddress(email, nickname));
msg.setSubject("Account Activation");