发送 邮件

/**
 * @author zhj
 * @Title:
 * @Package
 * @Description:
 * @date 
 */
public class Test {
    public static void main(String[] args) throws Exception {
        // 1 下载 mail包, 2 导包
        // 邮件协议
        // SMTP (Simple Mail Transfer Protocol)简单传输协议,中转站可以做SMTP认证
        // POP3  (Post Office Protocol)邮局协议
        // IMAP4 (Internet Mail Access Protocol)互联网邮件访问协议

        // 3. 创建一个Properties对象
        Properties props = new Properties();
        props.put("mail.transport.protocol","smtp"); // 邮件协议
        props.put("mail.smtp.host","smtp.qq.com"); // 主机
        //props.put("mail.smtp.port","465"); // 端口
        //props.put("mail.smtp.auth","true");// 默认,是否需要用户认证
        //props.put("mail.smtp.ssl.enable","true"); // ssl安全连接认证


        // 4. 创建一个session对象
        Session session = Session.getInstance(props);
        // 5. 创建一个邮件对象
        MimeMessage message = new MimeMessage(session);
        // 设置发送邮件的信息
        // 1 发件人
        // 2 收件人
        //  抄送: 发给A同时让B也看到,B 即为抄送人
        // 3 主题
        // 4 发送时间
        // 5 正文
        message.setFrom(new InternetAddress("2414680855@qq.com"));
        // To 发送  CC抄送  BCC密送
        message.setRecipient(MimeMessage.RecipientType.TO,new InternetAddress("2414680855@qq.com"));
        message.setSubject("try try "); // 主题
        message.setSentDate(new Date()); // 发送时间
        message.setText("我就试试"); // 正文
        message.saveChanges(); // 保存设置

        // 基于session桥梁
        Transport transport = session.getTransport();
        // 创建邮件连接
        transport.connect("2414680855@qq.com","waeackgxoahmecbj");
        // 发送邮件
        transport.sendMessage(message,message.getAllRecipients());
        /// 关闭通道
        transport.close();
    }
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值