email.setHostName(mailInfo.getHostName()); // 设定smtp服务器
email.setSSL(mailInfo.getIsSSL()); // 设定是否使用SSL
email.setSslSmtpPort(mailInfo.getSslSmtpPort()); // 设定SSL端口
email.setAuthentication(mailInfo.getUserName(), mailInfo.getPassword()); // 设定smtp服务器的认证资料信息
email.setDebug(mailInfo.getIsDebug()); // 是否用debug模式
email.addTo(mailInfo.getToAddress(), mailInfo.getToName()); // 设定收件人
email.setFrom(mailInfo.getFromAddress(), mailInfo.getFromName());
email.setSubject(mailInfo.getSubject());
// embed the image and get the content id
File file = new File(mailInfo.getFilePath());
String cid = email.embed(file);