继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

java邮件发送的要点和伪代码

大叔_fighting
关注TA
已关注
手记 81
粉丝 44
获赞 400

1.协议 SMTP发送
POP3接收 端口是110
2.邮件发送过程
例如连接网易163的SMTP服务器 发给qq邮箱的SMTP服务器
3.邮件服务器配置
http://download.csdn.net/download/u010168160/9227403 易邮服务器下载
Foxmail 官网 <a href="Foxmail" target="_blank" rel="nofollow">http://www.foxmail.com/">Foxmail</a>
4.jar包地址
http://pan.baidu.com/s/1mh71zSG

5.代码
/**

  • 发送邮件的方法
  • @param to 邮箱地址
  • @param msg 发送的信息
    */
    public static void sendMail(String to, String msg) throws Exception {

    // 1.创建连接对象,连接到邮箱服务器
    Properties prop = new Properties();
    // 设置邮件服务器主机名
    prop.setProperty("mail.host", host);
    // 发送邮件协议名称
    prop.setProperty("mail.transport.protocol", "smtp");
    // 发送服务器需要身份验证
    prop.setProperty("mail.smtp.auth", "true");
    
    /*
        注意:使用qq邮箱发送需要开启ssl加密
    */
    /*
    MailSSLSocketFactory sf = new MailSSLSocketFactory();
    sf.setTrustAllHosts(true);
    prop.setProperty("mail.smtp.ssl.enable", "true");
    prop.put("mail.smtp.ssl.socketFactory", sf);
    */
    
    Session session = Session.getInstance(prop,  new Authenticator() {
        public PasswordAuthentication getPasswordAuthentication() {
            //设置发送人的帐号和密码
            return new PasswordAuthentication(from[0], from[1]);
        }
    });
    
    // 2.创建邮件对象
    Message message = new MimeMessage(session);
    // 2.1 设置发件者
    message.setFrom(new InternetAddress(from[0]));
    // 2.2 设置收件者
    message.setRecipient(Message.RecipientType.TO, new InternetAddress(to));
    // 2.3 设置邮件主题
    message.setSubject("欢迎您注册我们网站");
    // 2.4 设置邮件的正文
    message.setContent("<h1>请点击<a href='http://localhost:8080/maildemo/ActiveServlet?uid="+msg+"'>此链接</a>以激活账号</h1>", "text/html;charset=utf-8");
    
    // 3.发送邮件
    Transport.send(message);

    }

7.https://github.com/hdonghong/JavaProject/tree/master/maildemo 源码地址

打开App,阅读手记
2人推荐
发表评论
随时随地看视频慕课网APP

热门评论

感谢分享/////////////

查看全部评论