Java Code Examples for org.apache.commons.mail.HtmlEmail#setSSL()
The following examples show how to use
org.apache.commons.mail.HtmlEmail#setSSL() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: MailSender.java From translationstudio8 with GNU General Public License v2.0 | 6 votes |
/** * 构造方法. * @param host * 邮件服务器,如:"mail.heartsome.net" * @param protocol * 邮件协议 * @param port * 端口号 * @param userName * 邮箱用户名 * @param password * 邮箱密码 * @param ssl * 是否应用 SSL 安全协议 */ public MailSender(String host, String protocol, int port, String userName, String password, boolean ssl) { props = new Properties(); if (port != -1) { this.port = port; } this.userName = userName; this.password = password; props.setProperty("mail." + protocol + ".auth", "true"); props.setProperty("mail.transport.protocol", protocol); props.setProperty("mail.host", host); props.setProperty("mail." + protocol + ".port", "" + this.port); createSession(); email = new HtmlEmail(); email.setCharset("utf-8"); email.setMailSession(session); if (ssl) { email.setSSL(true); } }
Example 2
Source File: MailSender.java From tmxeditor8 with GNU General Public License v2.0 | 6 votes |
/** * 构造方法. * @param host * 邮件服务器,如:"mail.heartsome.net" * @param protocol * 邮件协议 * @param port * 端口号 * @param userName * 邮箱用户名 * @param password * 邮箱密码 * @param ssl * 是否应用 SSL 安全协议 */ public MailSender(String host, String protocol, int port, String userName, String password, boolean ssl) { props = new Properties(); if (port != -1) { this.port = port; } this.userName = userName; this.password = password; props.setProperty("mail." + protocol + ".auth", "true"); props.setProperty("mail.transport.protocol", protocol); props.setProperty("mail.host", host); props.setProperty("mail." + protocol + ".port", "" + this.port); createSession(); email = new HtmlEmail(); email.setCharset("utf-8"); email.setMailSession(session); if (ssl) { email.setSSL(true); } }
Example 3
Source File: SendEmaiWithGmail.java From spring-boot with Apache License 2.0 | 4 votes |
/** * 发送 html 格式的邮件 * * @param userName * @param password * @param subject * @param from * @param to * @param cc * @param bcc * @throws EmailException * @throws java.net.MalformedURLException */ public void sendHTMLEmail(String userName, String password, String subject, String from, String to, String cc, String bcc) throws EmailException, MalformedURLException { // 创建SimpleEmail对象 HtmlEmail email = new HtmlEmail(); // 显示调试信息用于IED中输出 email.setDebug(true); // 设置发送电子邮件的邮件服务器 email.setHostName("smtp.gmail.com"); // 邮件服务器是否使用ssl加密方式gmail就是,163就不是) email.setSSL(Boolean.TRUE); // 设置smtp端口号(需要查看邮件服务器的说明ssl加密之后端口号是不一样的) email.setSmtpPort(465); // 设置发送人的账号/密码 email.setAuthentication(userName, password); // 显示的发信人地址,实际地址为gmail的地址 email.setFrom(from); // 设置发件人的地址/称呼 // email.setFrom("[email protected]", "发送人"); // 收信人地址 email.addTo(to); // 设置收件人的账号/称呼) // email.addTo("[email protected]", "收件人"); // 多个抄送地址 StrTokenizer stokenCC = new StrTokenizer(cc.trim(), ";"); // 开始逐个抄送地址 for (int i = 0; i < stokenCC.getTokenArray().length; i++) { email.addCc((String) stokenCC.getTokenArray()[i]); } // 多个密送送地址 StrTokenizer stokenBCC = new StrTokenizer(bcc.trim(), ";"); // 开始逐个抄送地址 for (int i = 0; i < stokenBCC.getTokenArray().length; i++) { email.addBcc((String) stokenBCC.getTokenArray()[i]); } // Set the charset of the message. email.setCharset("UTF-8"); email.setSentDate(new Date()); // 设置标题,但是不能设置编码,commons 邮件的缺陷 email.setSubject(subject); // === 以上同 simpleEmail // ===html mail 内容 StringBuffer msg = new StringBuffer(); msg.append("<html><body>"); // embed the image and get the content id // 远程图片 URL url = new URL("http://www.apache.org/images/asf_logo_wide.gif"); String cid = email.embed(url, "Apache logo"); msg.append("<img src=\"cid:").append(cid).append("\">"); // 本地图片 File img = new File("d:/java.gif"); msg.append("<img src=cid:").append(email.embed(img)).append(">"); msg.append("</body></html>"); // === html mail 内容 // ==== // set the html message email.setHtmlMsg(msg.toString()); // set the alternative message email.setTextMsg("Your email client does not support HTML messages"); // send the email email.send(); System.out.println("The HtmlEmail send sucessful!"); }