java 发送邮件处理类

package kaga.it.Dao.Impl;

import java.io.File;
import java.io.UnsupportedEncodingException;
import java.util.Date;
import java.util.Properties;

import javax.activation.DataHandler;
import javax.activation.FileDataSource;
import javax.mail.Address;
import javax.mail.Authenticator;
import javax.mail.Message;
import javax.mail.MessagingException;
import javax.mail.Multipart;
import javax.mail.NoSuchProviderException;
import javax.mail.Session;
import javax.mail.Transport;
import javax.mail.internet.AddressException;
import javax.mail.internet.InternetAddress;
import javax.mail.internet.MimeBodyPart;
import javax.mail.internet.MimeMessage;
import javax.mail.internet.MimeMultipart;

/**
 *
 * 操作邮件的工具类,该工具类初始化需提供了发送者邮箱地址等信息 发送支持多个收件人,附件 html 及文本
 *
 * @author sunny.sun
 * @version 1.0
 *
 */
public class conference_MailSendImpl {

    // 定义发件人别名
    private String displayName;

    // 邮件发送者
    private String from;

    // 邮件服务器
    private String smtpServer;

    // 用户名
    private String username;

    // 密码
    private String password;

    // 字符集
    private String charset = "utf-8";

    /**
     * 初始化SMTP服务器地址
     *
     * @param smtpServer
     *            服务器地址
     * @param from
     *            发送者
     * @param displayName
     *            别名
     * @param username
     *            用户名
     * @param password
     *            密码
     */
    public conference_MailSendImpl(String smtpServer, String from,
            String displayName, String username, String password) {
        this.smtpServer = smtpServer;
        this.from = from;
        this.displayName = displayName;
        this.username = username;
        this.password = password;
    }

    public String getDisplayName() {
        return displayName;
    }

    public void setDisplayName(String displayName) {
        this.displayName = displayName;
    }

    public String getFrom() {
        return from;
    }

    public void setFrom(String from) {
        this.from = from;
    }

    public String getSmtpServer() {
        return smtpServer;
    }

    public void setSmtpServer(String smtpServer) {
        this.smtpServer = smtpServer;
    }

    public String getUsername() {
        return username;
    }

    public void setUsername(String username) {
        this.username = username;
    }

    public String getPassword() {
        return password;
    }

    public void setPassword(String password) {
        this.password = password;
    }

    public String getCharset() {
        return charset;
    }

    public void setCharset(String charset) {
        this.charset = charset;
    }

    /**
     * @param to
     *            发送地址
     * @param isAuth
     *            是否需要认证
     * @param subject
     *            主题
     * @param content
     *            内容
     * @param isHtml
     *            是否是html
     * @param files
     *            附件
     * @return
     * @throws MessagingException
     * @throws UnsupportedEncodingException
     */
    public void send(String[] tos, boolean isAuth, String subject,
            String content, boolean isHtml) {
        Session session = null;
        Properties props = System.getProperties();
        props.put("mail.smtp.host", smtpServer);
        if (isAuth) { // 服务器需要身份认证
            props.put("mail.smtp.auth", "true");
            // 生成认证的Authenticator
            Authenticator authenticator = new Authenticator() {
                protected javax.mail.PasswordAuthentication getPasswordAuthentication() {
                    return new javax.mail.PasswordAuthentication(username,
                            password);
                }
            };
            session = Session.getDefaultInstance(props, authenticator);
        } else {
            props.put("mail.smtp.auth", "false");
            session = Session.getDefaultInstance(props, null);
        }
        // 是否debug
        session.setDebug(true);
        Transport trans = null;
        try {
            trans = session.getTransport("smtp");
        } catch (NoSuchProviderException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }

        // 多个接收人
        InternetAddress[] address = new InternetAddress[tos.length];
        for (int i = 0; i < address.length; i++) {
            try {
                address[i] = new InternetAddress(tos[i]);
            } catch (AddressException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
        }

        // 连接服务器
        try {
            trans.connect(smtpServer, username, password);
        } catch (MessagingException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }

        // 生成发送的消息
        Message msg = new MimeMessage(session);

        // 邮件的地址及别名
        Address from_address = null;
        try {
            from_address = new InternetAddress(from, displayName);
        } catch (UnsupportedEncodingException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }

        // 设置
        try {
            msg.setFrom(from_address);
        } catch (MessagingException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }

        // 设置接收人地址
        try {
            msg.setRecipients(Message.RecipientType.TO, address);
        } catch (MessagingException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }

        // 设置发送主题
        try {
            msg.setSubject(subject);
        } catch (MessagingException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }

        // 部件
        Multipart mp = new MimeMultipart();

        // body部件
        MimeBodyPart mbp = new MimeBodyPart();

        // 判断发送的是否是html格式
        if (isHtml) {// 如果是html格式
            try {
                mbp.setContent(content, "text/html;charset=" + charset);
            } catch (MessagingException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
        } else {
            try {
                mbp.setText(content);
            } catch (MessagingException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
        }
        // 将该正文部件加入到整体部件
        try {
            mp.addBodyPart(mbp);
        } catch (MessagingException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }

        // Multipart加入到信件
        try {
            msg.setContent(mp);
        } catch (MessagingException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }

        // 设置信件头的发送日期
        try {
            msg.setSentDate(new Date());
        } catch (MessagingException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }

        // 发送信件
        try {
            msg.saveChanges();
        } catch (MessagingException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }

        // 发送
        try {
            trans.sendMessage(msg, msg.getAllRecipients());
        } catch (MessagingException e1) {
            // TODO Auto-generated catch block
            e1.printStackTrace();
        }

        // 结束
        try {
            trans.close();
        } catch (MessagingException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }

    }

    public static void main(String[] args) throws UnsupportedEncodingException,
            MessagingException {

        conference_MailSendImpl mailUtil = new conference_MailSendImpl(
                "192.168.2.30", "fish_wang@qq.com", "Fish wang",
                "Fish wang", "fish");// 设置发件人相关

        String SendTitle = "标题";// 邮件标题

        String SendContent = "<a href=\"www.baidu.com\">百度一下</a>";// 邮件内容

        String receiveAddress[] = { "fish_wang@qq.com",
                "fish_wang33@qq.com" };

        mailUtil.send(receiveAddress, false, SendTitle, SendContent, false);
    }
}
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值