springboot 之 郵件發送

使用exchange發送郵件

依賴包

<dependency>
    <groupId>com.microsoft.ews-java-api</groupId>
    <artifactId>ews-java-api</artifactId>
    <version>2.0</version>
</dependency>

下載郵件源碼

郵件測試代碼

List<String> sendto = new ArrayList<>();
sendto.add("[email protected]");
MailUtil.sendMail("mail.xxx.com","[email protected]","mypassword",sendto,"this is test!","this is test!",null,null);

測試結果

在這裏插入圖片描述

其他的發送方式

Spring Boot 郵件發送的 5 種姿勢

參考網址:

https://github.com/OfficeDev/ews-java-api/

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章