public static void sendMessage(String host, Integer port, String user,
String password, MailTransport t, Mail m) throws MessagingException {
MailSender sender = new SimpleMailSender(host, port, user, password, t);
sender.sendMail(m);
}
public static Mail createMessage(String from, String[] to, String subject,
String text, String html) {