java向outlook发邮件(简单实现)

只用于发送邮件,设置账号时要注意用户名和邮箱的区别

package com.landray.kmss.pro.leadroute.service.spring;

import java.util.Properties;

import javax.mail.Authenticator;
import javax.mail.Message;
import javax.mail.MessagingException;
import javax.mail.PasswordAuthentication;
import javax.mail.Session;
import javax.mail.Transport;
import javax.mail.internet.InternetAddress;
import javax.mail.internet.MimeMessage;

public class ToExchangeMail {
    public static String sendMain(String to) {
        String from = "xxx@qq.com";// 发件人电子邮箱
        //获取系统属性,主要用于设置邮件相关的参数。
        Properties properties = System.getProperties();
        properties.setProperty("mail.smtp.host", "smtp.xxx");//smtp协议地址
        properties.setProperty("mail.smtp.port", "xx");//端口号
        Session session = Session.getDefaultInstance(properties, new Authenticator() {
            @Override
            protected PasswordAuthentication getPasswordAuthentication() {
                return new PasswordAuthentication("发送者邮箱的用户名(不是邮箱)", "密码");//发送者账号密码
            }
        });
        
        //创建MimeMessage消息对象,消息头配置了收发邮箱的地址,消息体包含了邮件标题和邮件内容。接收者类型:TO代表直接发送,CC代表抄送,BCC代表秘密抄送。
        try {
            MimeMessage message = new MimeMessage(session);
            message.addHeader("X-Mailer","Microsoft Outlook Express 6.00.2900.2869");
            message.setFrom(new InternetAddress(from));
            message.addRecipient(Message.RecipientType.TO, new InternetAddress(to));
            message.setSubject("标题");
            message.setText("内容");
            Transport.send(message);
            System.out.println("发送成功!");
            return "success";
        } catch (MessagingException e) {
            e.printStackTrace();
            return "failed";
        }
        
    }

}
 

 

测试类:

public class MyTest {
    public static void main(String[] args) {
        ToExchangeMail mail=new ToExchangeMail();
        mail.sendMain("接收人的邮箱");
    }
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值