i want to send email using html code. plzz help
GMailSender m = new GMailSender("", "");
String[] toArr = {""};
m.setTo(toArr); // load array to setTo function
m.setFrom("dawinderg@gmail.com"); // who is sending the email
m.setSubject("Registration");
m.setBody("Thanks for registration with us.");
i want to send