public void forgotPassword(String retrieveUrl, LoginAccount account ){
if( account == null || StringUtils.isEmpty(account.getEmail()) )
return ;
ConnectionConfig config = getEmailConnectionConfig();
Address to = new Address(account.getEmail(),account.getLoginName());
Address from = new Address(config.getUsername(),config.getUsername());
MailAddress mailAddress = new MailAddress( to,from );
StringBuffer content = new StringBuffer();
content.append("<html>");
//content.append("<img src=\"http://www.gstatic.com/codesite/ph/images/defaultlogo.png\"></br>");