用Java代码发qq邮件

import com.sun.mail.util.MailSSLSocketFactory;
import javax.mail.*;
import javax.mail.internet.InternetAddress;
import javax.mail.internet.MimeMessage;
import java.io.UnsupportedEncodingException;
import java.security.GeneralSecurityException;
import java.util.Properties;

public class Test1 {//pybxostbasmhbbfh

    public static void main(String[] args) throws GeneralSecurityException, UnsupportedEncodingException {
        // 收件人电子邮箱
        String to = "xxx@qq.com";

        // 发件人电子邮箱
        String from = "xxx@qq.com";

        // 指定发送邮件的主机为 smtp.qq.com
        String host = "smtp.qq.com";  //QQ 邮件服务器

        // 获取系统属性
        Properties properties = System.getProperties();

        // 设置邮件服务器
        properties.setProperty("mail.smtp.host", host);

        properties.put("mail.smtp.auth", "true");

        MailSSLSocketFactory sf = new MailSSLSocketFactory();
        sf.setTrustAllHosts(true);
        properties.put("mail.smtp.ssl.enable", "true");
        properties.put("mail.smtp.ssl.socketFactory", sf);

        // 获取默认session对象
        Session session = Session.getDefaultInstance(properties, new Authenticator() {
            public PasswordAuthentication getPasswordAuthentication() {
                return new PasswordAuthentication("xxx@qq.com", "自己QQ的授权码"); //发件人邮件用户名、密码
            }
        });

        try {
            // 创建默认的 MimeMessage 对象
            MimeMessage message = new MimeMessage(session);

            // Set From: 头部头字段
            message.setFrom(new InternetAddress(from));

            // Set To: 头部头字段
            message.addRecipient(Message.RecipientType.TO, new InternetAddress(to));

            // Set Subject: 头部头字段
            message.setSubject("这是个邮件!");

            // 设置消息体
            message.setText("hello,world!");
            // 发送消息
            Transport.send(message);
            System.out.println("Sent message successfully");
        } catch (MessagingException mex) {
            mex.printStackTrace();
        }
    }
}


授权码需要去qq邮箱 设置-->账户 里把POP3/SMTP服务 开启,会得到一个授权码,一个长字符串


运行即可


如果还想要带附件,在  message.addRecipient(...)这句代码后面加上下面代码,并且把message.setTest(..)改成message.setContent(multipart);


 	 // 创建消息部分
         BodyPart messageBodyPart = new MimeBodyPart();
 
         // 消息
         messageBodyPart.setText("This is message body");
        
         // 创建多重消息
         Multipart multipart = new MimeMultipart();
 
         // 设置文本消息部分
         multipart.addBodyPart(messageBodyPart);
 
         // 附件部分
         messageBodyPart = new MimeBodyPart();
         String filename = "file.txt";
         DataSource source = new FileDataSource(filename);
         messageBodyPart.setDataHandler(new DataHandler(source));
         messageBodyPart.setFileName(filename);
         multipart.addBodyPart(messageBodyPart);


本文章引用自菜鸟教程  www.runoob.com

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
要使用 Java 发送 QQ 邮件,你需要遵循以下步骤: 1. 开启 QQ 邮箱的 SMTP 服务: 在 QQ 邮箱的设置中,找到 POP3/IMAP/SMTP/Exchange/CardDAV/CalDAV服务,开启 SMTP服务,并且获取授权码。 2. 添加 JavaMail 和 JavaBeans Activation Framework (JAF) 依赖: ```xml <dependency> <groupId>com.sun.mail</groupId> <artifactId>javax.mail</artifactId> <version>1.6.2</version> </dependency> <dependency> <groupId>com.sun.activation</groupId> <artifactId>javax.activation</artifactId> <version>1.2.0</version> </dependency> ``` 3. 编写 Java 代码: ```java import javax.mail.*; import javax.mail.internet.*; import java.util.Properties; public class SendQQEmail { public static void main(String[] args) { String to = "recipient@qq.com"; // 收件人邮箱地址 String from = "sender@qq.com"; // 件人邮箱地址 String host = "smtp.qq.com"; // QQ 邮箱 SMTP 服务器地址 String port = "465"; // QQ 邮箱 SMTP 服务器端口号 String username = "sender@qq.com"; // 件人邮箱账号 String password = "your authorization code"; // 件人邮箱授权码 Properties properties = new Properties(); properties.put("mail.smtp.host", host); properties.put("mail.smtp.port", port); properties.put("mail.smtp.auth", "true"); properties.put("mail.smtp.ssl.enable", "true"); // 使用 SSL 加密传输 Session session = Session.getDefaultInstance(properties, new Authenticator() { public PasswordAuthentication getPasswordAuthentication() { return new PasswordAuthentication(username, password); } }); try { MimeMessage message = new MimeMessage(session); message.setFrom(new InternetAddress(from)); message.addRecipient(Message.RecipientType.TO, new InternetAddress(to)); message.setSubject("Java QQ 邮件"); message.setText("这是一封由 Java 发送QQ 邮件。"); Transport.send(message); System.out.println("邮件发送。"); } catch (MessagingException mex) { mex.printStackTrace(); } } } ``` 请将代码中的 `to`、`from`、`username` 和 `password` 替换为你自己的邮箱地址和账号信息,然后运行程序即可发送邮件
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值