MS Exchange Server 允許您創建電子郵件分發列表,該列表可用於向一組人發送電子郵件,而無需輸入個人電子郵件地址。要以編程方式創建此類列表,本文介紹瞭如何使用 Java 在 MS Exchange Server 上創建通訊組列表。此外,它還展示瞭如何以編程方式獲取通訊組列表。
用於在 MS Exchange Server 上創建通訊組列表的 Java API
要在 MS Exchange Server 上創建分發列表,我們將使用 Aspose.Email for Java。該 API 旨在從 Java 應用程序中創建、發送和處理電子郵件。此外,它還支持使用 MS Outlook 和 Exchange Server,而無需編寫複雜的代碼。您可以 下載 API 或使用以下 Maven 配置安裝它。
存儲庫:
<repository>
<id>AsposeJavaAPI</id>
<name>Aspose Java API</name>
<url>http://repository.aspose.com/repo/</url>
</repository>
依賴:
<dependency>
<groupId>com.aspose</groupId>
<artifactId>aspose-email</artifactId>
<version>22.3</version>
<classifier>jdk16</classifier>
</dependency>
在 Java 中創建 MS Exchange 分發列表
以下是使用 Java 在 MS Exchange Server 上創建通訊組列表的步驟。
- 首先,連接到 Exchange Server 並將 EWS 客戶端的實例放入 IEWSClient 對像中。
- 之後,創建 ExchangeDistributionList 類的實例。
- 使用 ExchangeDistributionList.setDisplayName() 方法設置列表的顯示名稱。
- 創建 MailAddressCollection 類的實例並將成員添加到集合中。
- 最後,使用 IEWSClient.createDistributionList(ExchangeDistributionList, MailAddressCollection) 方法創建通訊組列表。
以下代碼示例顯示瞭如何在 Java 中創建 MS Exchange 分發列表。
// 連接到 Exchange 服務器
IEWSClient client = EWSClient.getEWSClient("https://outlook.office365.com/ews/exchange.asmx", "testUser", "pwd", "domain");
// 實例化列表
ExchangeDistributionList distributionList = new ExchangeDistributionList();
// 設置顯示名稱
distributionList.setDisplayName("test private list");
// 將成員添加到列表
MailAddressCollection members = new MailAddressCollection();
members.add("address1@host.com");
members.add("address2@host.com");
members.add("address3@host.com");
// 創建列表
client.createDistributionList(distributionList, members);
在 Java 中從 MS Exchange 服務器獲取通訊組列表
現在,讓我們看看如何在 Java 中以編程方式從 MS Exchange Server 獲取通訊組列表。
- 首先,連接到 Exchange Server 並將 EWS 客戶端的實例放入 IEWSClient 對像中。
- 之後,使用 IEWSClient.listDistributionLists() 方法將分發列表放入 ExchangeDistributionList 數組。
- 遍歷數組中的每個分發列表。
- 最後,使用 IEWSClient.fetchDistributionList(ExchangeDistributionList) 方法獲取分發列表的成員。
以下代碼示例顯示瞭如何使用 Java 從 MS Exchange Server 獲取通訊組列表。
// 連接到 Exchange 服務器
IEWSClient client = EWSClient.getEWSClient("https://outlook.office365.com/ews/exchange.asmx", "testUser", "pwd", "domain");
// 獲取所有列表
ExchangeDistributionList[] distributionLists = client.listDistributionLists();
// 遍歷每個列表並獲取成員
for (ExchangeDistributionList distributionList : distributionLists) {
MailAddressCollection members = client.fetchDistributionList(distributionList);
for (MailAddress member : (Iterable<MailAddress>) members) {
System.out.println(member.getAddress());
}
}
獲取免費的 API 許可證
您可以獲得免費的臨時許可證,以在沒有評估限制的情況下使用 Aspose.Email for Java。
結論
在本文中,您了解瞭如何使用 Java 在 MS Exchange Server 上創建通訊組列表。此外,您還了解瞭如何以編程方式獲取 MS Exchange 分發列表。此外,您可以瀏覽 文檔 以閱讀有關 Aspose.Email for Java 的更多信息。此外,您可以將您的查詢發佈到我們的論壇。