Outlook Web Addin-获取SMTP详细信息

时间:2018-06-29 12:58:00

标签: outlook outlook-addin

是否可以通过Outlook Web加载项获取当前邮件的SMTP详细信息?我看到VSTO插件具有此功能。

1 个答案:

答案 0 :(得分:0)

我通过这个获得了所有的哑剧数据

<?xml version="1.0" encoding="utf-8"?> 
    <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
                   xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" 
                   xmlns:xsd="http://www.w3.org/2001/XMLSchema" 
                   xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" 
                   xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"> 
      <soap:Header> 
        <RequestServerVersion Version="Exchange2013" xmlns="http://schemas.microsoft.com/exchange/services/2006/types" soap:mustUnderstand="0" /> 
      </soap:Header> 
      <soap:Body> 
        <GetItem 
                    xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" 
                    xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"> 
          <ItemShape> 
            <t:BaseShape>Default</t:BaseShape> 
            <t:IncludeMimeContent>true</t:IncludeMimeContent>
          </ItemShape> 
          <ItemIds> 
            <t:ItemId Id="  item_id  "/> 
          </ItemIds> 
        </GetItem> 
      </soap:Body> 
    </soap:Envelope>

然后可以对mime数据进行解码以获得有关消息的更多详细信息