在 Exchange 中使用 EWS 添加附件
了解如何使用 Exchange 中的 EWS 托管 API 或 EWS 创建带有附件的新项目,或将附件添加到现有项目。
可以使用 EWS 托管 API 或 EWS 将文件附件或项目附件添加到新的或现有项。 如果使用 EWS 托管 API,则使用相同的方法向新的或现有项添加附件:但是,如果使用的是文件或项目附件,则方法会更改。 相反,如果使用 EWS,则使用相同的操作向项目添加文件或项目附件,但如果将附件添加到新的或现有的项目,则操作会更改。
表 1. 用于添加附件的 EWS 托管 API 方法和 EWS 操作
任务 | EWS 托管的 API 方法 | EWS 操作 |
---|---|---|
将文件附件添加到新电子邮件或现有电子邮件 |
AttachmentCollection.AddFileAttachment |
新建电子邮件的 CreateItem 要添加到现有电子邮件的 CreateAttachment |
将项目附件添加到新电子邮件或现有电子邮件 |
AttachmentCollection.AddItemAttachment |
新建电子邮件的 CreateItem 要添加到现有电子邮件的 CreateAttachment |
使用 EWS 托管 API 创建包含文件和项目附件的电子邮件
下面的代码示例演示如何通过以下方式创建包含多个文件附件和项目附件的电子邮件:
使用 EmailMessage 对象创建电子邮件。
使用 AttachmentCollection.AddFileAttachment 和 AttachmentCollection.AddItemAttachment 方法向邮件添加附件。
使用 EmailMessage.SendAndSaveCopy 方法将邮件发送给收件人,并将邮件保存在“已发送邮件”文件夹中。
此代码示例演示了使用 EWS 托管 API 将文件附件添加到项的四种方法:
通过使用完全限定的文件位置。
通过使用完全限定的文件位置和新的附件名称。
通过使用字节数组。
通过使用流。
请注意,此示例中的项目附件与电子邮件同时创建。 若要将现有电子邮件添加为项目附件,请参阅 使用 MimeContent 和 EWS 托管 API 将现有项添加到新电子邮件。
此示例假定 service 是有效的 ExchangeService 对象,且用户已通过 Exchange 服务器的身份验证。
public static void CreateEmailWithAttachments(ExchangeService service)
{
// Create an email message and set properties on the message.
EmailMessage message = new EmailMessage(service);
// Set properties on the email message.
message.Subject = "Message with Attachments";
message.Body = "This message contains four file attachments
and one message item attachment.";
message.ToRecipients.Add("sadie@contoso.com");
message.ToRecipients.Add("ronnie@contoso.com");
// Add a file attachment by using the fully qualified location of the file.
message.Attachments.AddFileAttachment("C:\\temp\\FileAttachment.txt");
// Add a file attachment by using the fully qualified string name,
// and specify the name of the attachment as it will appear in the email.
// The new name of the file attachment is SecondAttachment.txt.
message.Attachments.AddFileAttachment("SecondAttachment.txt", "C:\\temp\\FileAttachment2.txt");
// Add a file attachment by using a byte array.
// In this example, theBytes is the byte array that represents the content of the image file to attach.
byte[] theBytes = File.ReadAllBytes("C:\\Temp\\Tulips.jpg");
// The byte array file attachment is named ThirdAttachment.jpg.
message.Attachments.AddFileAttachment("ThirdAttachment.jpg", theBytes);
// Add a file attachment by using a stream.
FileStream theStream = new FileStream("C:\\temp\\FileAttachment4.txt", FileMode.OpenOrCreate);
// The streamed file attachment is named FourthAttachment.txt.
message.Attachments.AddFileAttachment("FourthAttachment.txt", theStream);
// Add an email message as an item attachment and set properties on the item.
ItemAttachment<EmailMessage> itemAttachment = message.Attachments.AddItemAttachment<EmailMessage>();
itemAttachment.Name = "Attached Message Item";
itemAttachment.Item.Subject = "Message Item Subject";
itemAttachment.Item.Body = "Message Item Body";
itemAttachment.Item.ToRecipients.Add("sadie@contoso.com");
itemAttachment.Item.ToRecipients.Add("ronnie@contoso.com");
// Send the mail and save a copy in the Sent Items folder.
// This method results in a CreateItem and SendItem call to EWS.
message.SendAndSaveCopy();
}
使用 EWS 创建包含文件和项目附件的电子邮件
下面的代码示例演示如何使用 CreateItem 操作创建包含四个文件附件和一个项目附件的电子邮件。 这也是 EWS 托管 API 在创建包含文件和项目附件的电子邮件时发送的 XML 请求之一。
请注意,此示例中的项目附件与电子邮件同时创建。 若要将现有电子邮件添加为项目附件,请参阅 使用 MimeContent 和 EWS 托管 API 将现有项添加到新电子邮件。
<?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:t="http://schemas.microsoft.com/exchange/services/2006/types"
xmlns:soap="https://schemas.xmlsoap.org/soap/envelope/">
<soap:Header>
<t:RequestServerVersion Version="Exchange2007_SP1" />
</soap:Header>
<soap:Body>
<m:CreateItem MessageDisposition="SaveOnly">
<m:Items>
<t:Message>
<t:Subject>Message with Attachments</t:Subject>
<t:Body BodyType="HTML">This message contains four file attachments
and one message item attachment.</t:Body>
<t:Attachments>
<t:FileAttachment>
<t:Name>FileAttachment.txt</t:Name>
<t:IsInline>false</t:IsInline>
<t:IsContactPhoto>false</t:IsContactPhoto>
<t:Content>VGhpcyBpcyBhIGZpbGUgYXR0YWNobWVudC4=</t:Content>
</t:FileAttachment>
<t:FileAttachment>
<t:Name>SecondAttachment.txt</t:Name>
<t:IsInline>false</t:IsInline>
<t:IsContactPhoto>false</t:IsContactPhoto>
<t:Content>VGhpcyBpcyB0aGUgc2Vjb25kIGZpbGUgYXR0YWNobWVudC4=</t:Content>
</t:FileAttachment>
<t:FileAttachment>
<t:Name>ThirdAttachment.jpg</t:Name>
<t:IsInline>false</t:IsInline>
<t:IsContactPhoto>false</t:IsContactPhoto>
<t:Content>nAoAXNIZMVEZs5GKhdzRcLH/9k=</t:Content>
</t:FileAttachment>
<t:FileAttachment>
<t:Name>FourthAttachment.txt</t:Name>
<t:IsInline>false</t:IsInline>
<t:IsContactPhoto>false</t:IsContactPhoto>
<t:Content>obWVudC4=…</t:Content>
</t:FileAttachment>
<t:ItemAttachment>
<t:Name>Attached Message Item</t:Name>
<t:IsInline>false</t:IsInline>
<t:Message>
<t:Subject>Message Item Subject</t:Subject>
<t:Body BodyType="HTML">Message Item Body</t:Body>
<t:ToRecipients>
<t:Mailbox>
<t:EmailAddress>sadie@contoso.com</t:EmailAddress>
</t:Mailbox>
<t:Mailbox>
<t:EmailAddress>mack@contoso.com</t:EmailAddress>
</t:Mailbox>
</t:ToRecipients>
</t:Message>
</t:ItemAttachment>
</t:Attachments>
<t:ToRecipients>
<t:Mailbox>
<t:EmailAddress>sadie@contoso.com</t:EmailAddress>
</t:Mailbox>
<t:Mailbox>
<t:EmailAddress>ronnie@contoso.com</t:EmailAddress>
</t:Mailbox>
</t:ToRecipients>
</t:Message>
</m:Items>
</m:CreateItem>
</soap:Body>
</soap:Envelope>
服务器使用 CreateItemResponse 消息响应 CreateItem 请求,该邮件包含 ResponseCode 值为 NoError,指示已成功创建电子邮件和附件。 响应中还包含新创建邮件的 ItemId 和每个附件的 AttachmentId 值。 为了提高可读性,某些属性的值已缩短。
<?xml version="1.0" encoding="utf-8"?>
<s:Envelope xmlns:s="https://schemas.xmlsoap.org/soap/envelope/">
<s:Header>
<h:ServerVersionInfo MajorVersion="15"
MinorVersion="0"
MajorBuildNumber="939"
MinorBuildNumber="12"
Version="V2_11"
xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
xmlns="http://schemas.microsoft.com/exchange/services/2006/types"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" />
</s:Header>
<s:Body xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<m:CreateItemResponse xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages"
xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types">
<m:ResponseMessages>
<m:CreateItemResponseMessage ResponseClass="Success">
<m:ResponseCode>NoError</m:ResponseCode>
<m:Items>
<t:Message>
<t:ItemId Id="upV4AAA="
ChangeKey="CQAAABYAAAAFI5DJmZv+TLtyLOLIF1S5AAAXuktU" />
<t:Attachments>
<t:FileAttachment>
<t:AttachmentId Id="6ts3NuI=" />
</t:FileAttachment>
<t:FileAttachment>
<t:AttachmentId Id="gOIZx1I=" />
</t:FileAttachment>
<t:FileAttachment>
<t:AttachmentId Id="esRan5I=" />
</t:FileAttachment>
<t:FileAttachment>
<t:AttachmentId Id="t7sU6s=" />
</t:FileAttachment>
<t:ItemAttachment>
<t:AttachmentId Id="XgDCggM=" />
</t:ItemAttachment>
</t:Attachments>
</t:Message>
</m:Items>
</m:CreateItemResponseMessage>
</m:ResponseMessages>
</m:CreateItemResponse>
</s:Body>
</s:Envelope>
使用 MimeContent 和 EWS 托管 API 将现有项添加到新电子邮件
若要将现有项目作为项目附件添加到另一个项目,需要创建一个新项目附件,并将现有项的内容复制到新项目。 可以通过两种方式来执行此操作:
如果专门处理电子邮件,可以将 MimeContent 属性的值从电子邮件复制到新创建的项目附件中。 在此过程中,你将丢失一些属性,例如后续标志和类别,但它非常适合标准电子邮件。
如果需要对所有项目类型具有完全保真度,可以绑定到现有项,并将所有属性和扩展属性复制到新附件中。
下面的代码示例演示了第一种方法,即将 MimeContent 复制到新项目附件中。 此示例后面的过程演示如何修改代码以使用第二种方法。
此示例假定 服务 是有效的 ExchangeService 对象,并且用户已对 Exchange 服务器进行身份验证,并且 itemId 是要附加的项的 ItemId 。
public static void CreateEmailExistingItem(ExchangeService service, ItemId itemId)
{
// This method results in a GetItem call to EWS.
EmailMessage msgToAttach = EmailMessage.Bind(service,itemId,
new PropertySet(ItemSchema.MimeContent, ItemSchema.Subject));
// Create an email message and set properties on the message.
EmailMessage message = new EmailMessage(service);
message.Subject = "Message with Item Attachment (MimeContent)";
message.Body = "The attachment to this message was created by copying
the MimeContent from the original message and adding it to a new item attachment.";
message.ToRecipients.Add("sadie@contoso.com");
// Add an email message item attachment and set properties on the item.
ItemAttachment<EmailMessage> itemAttachment = message.Attachments.AddItemAttachment<EmailMessage>();
itemAttachment.Item.MimeContent = msgToAttach.MimeContent;
itemAttachment.Name = msgToAttach.Subject;
// Send the mail and save a copy in the Sent Items folder.
// This method results in a CreateItem and SendItem call to EWS.
message.SendAndSaveCopy();
}
若要修改此示例以将现有项上的每个属性复制到新项目附件中,请执行以下操作:
- 将属性集更改为包括 PropertySet.FirstClassProperties 以及所需的任何其他属性或扩展属性。
// Add additional properties to the PropertySet.
EmailMessage msgToAttach = EmailMessage.Bind(service, itemId, new PropertySet(PropertySet.FirstClassProperties));
- 删除以下行,因为不需要 MimeContent 属性。
itemAttachment.Item.MimeContent = msgToAttach.MimeContent;
- 对要从现有项目复制到新附件的每个属性重复此行。 请勿将 ItemId 复制到新项目附件中,因为这是只读属性。
itemAttachment.Item.Subject = msgToAttach.Subject;
- 将附件上的 PidTagMessageFlags (0x0E070003) 属性设置为 Sent。
ExtendedPropertyDefinition sent = new ExtendedPropertyDefinition(3591, MapiPropertyType.Integer);
msgToAttach.Item.SetExtendedProperty(sent, "1");
使用 MimeContent 和 EWS 将现有项目添加到新电子邮件
可通过两种方法将现有项添加到新项:
如果专门处理电子邮件,可以将 MimeContent 元素的值从电子邮件复制到新创建的项目附件中。 在此过程中,你将丢失一些属性,例如后续标志和类别,但它非常适合标准电子邮件。
如果需要对所有项目类型具有完全保真度,可以绑定到现有项,并将所有属性和扩展属性复制到新附件中。
下面的代码示例演示如何使用 MimeContent 元素将原始项的内容复制到新项目附件的 MimeContent 值中。 该示例使用以下操作:
CreateItem - 创建新的电子邮件。
CreateAttachment - 若要创建新附件,请使用由 GetItem 操作检索到的 MimeContent 和 Subject。
SendItem - 发送并保存消息。
该示例首先检索现有项的 MimeContent 和 Subject 。
<?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:t="http://schemas.microsoft.com/exchange/services/2006/types"
xmlns:soap="https://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<m:GetItem>
<m:ItemShape>
<t:BaseShape>IdOnly</t:BaseShape>
<t:AdditionalProperties>
<t:FieldURI FieldURI="item:MimeContent" />
<t:FieldURI FieldURI="item:Subject" />
</t:AdditionalProperties>
</m:ItemShape>
<m:ItemIds>
<t:ItemId Id="jCrTAAA=" />
</m:ItemIds>
</m:GetItem>
</soap:Body>
</soap:Envelope>
服务器使用 GetItemResponse 邮件响应 GetItem 请求,该邮件包含 ResponseCode 值 NoError,指示已成功检索电子邮件,以及电子邮件的 MimeContent 和 Subject。
<?xml version="1.0" encoding="utf-8"?>
<s:Envelope xmlns:s="https://schemas.xmlsoap.org/soap/envelope/">
<s:Header>
<h:ServerVersionInfo MajorVersion="15"
MinorVersion="0"
MajorBuildNumber="944"
MinorBuildNumber="11"
Version="V2_12"
xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
xmlns="http://schemas.microsoft.com/exchange/services/2006/types"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" />
</s:Header>
<s:Body xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<m:GetItemResponse xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages"
xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types">
<m:ResponseMessages>
<m:GetItemResponseMessage ResponseClass="Success">
<m:ResponseCode>NoError</m:ResponseCode>
<m:Items>
<t:Message>
<t:MimeContent CharacterSet="UTF-8">tDQe/Eo=…</t:MimeContent>
<t:ItemId Id="jCrTAAA="
ChangeKey="CQAAABYAAAAFI5DJmZv+TLtyLOLIF1S5AAAZi+7u" />
<t:Subject>Play tennis?</t:Subject>
</t:Message>
</m:Items>
</m:GetItemResponseMessage>
</m:ResponseMessages>
</m:GetItemResponse>
</s:Body>
</s:Envelope>
接下来,调用 CreateItem 操作以创建新电子邮件。
<?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:t="http://schemas.microsoft.com/exchange/services/2006/types"
xmlns:soap="https://schemas.xmlsoap.org/soap/envelope/">
<soap:Header>
<t:RequestServerVersion Version="Exchange2010" />
</soap:Header>
<soap:Body>
<m:CreateItem MessageDisposition="SaveOnly">
<m:Items>
<t:Message>
<t:Subject>Message with Item Attachment (MimeContent)</t:Subject>
<t:Body BodyType="HTML">The attachment to this message was created by copying the MimeContent from the original message and adding it to a new item attachment.</t:Body>
<t:ToRecipients>
<t:Mailbox>
<t:EmailAddress>primary@contoso1000.onmicrosoft.com</t:EmailAddress>
</t:Mailbox>
</t:ToRecipients>
</t:Message>
</m:Items>
</m:CreateItem>
</soap:Body>
</soap:Envelope>
服务器使用 CreateItemResponse 消息响应 CreateItem 请求,该邮件包含 ResponseCode 值 NoError,指示已成功创建电子邮件。
接下来,使用由 GetItem 操作检索到的 MimeContent 和 Subject 创建新的项目附件。 使用 CreateItem 响应中返回的 ItemId 值填充 ParentItemId 元素的值。
<?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:t="http://schemas.microsoft.com/exchange/services/2006/types"
xmlns:soap="https://schemas.xmlsoap.org/soap/envelope/">
<soap:Header>
<t:RequestServerVersion Version="Exchange2010" />
</soap:Header>
<soap:Body>
<m:CreateAttachment>
<m:ParentItemId Id="jDKsAAA=" />
<m:Attachments>
<t:ItemAttachment>
<t:Name>Play tennis?</t:Name>
<t:IsInline>false</t:IsInline>
<t:Message>
<t:MimeContent CharacterSet="UTF-8">tDQe/Eo=…</t:MimeContent>
</t:Message>
</t:ItemAttachment>
</m:Attachments>
</m:CreateAttachment>
</soap:Body>
</soap:Envelope>
服务器使用 CreateAttachmentResponse 消息响应 CreateAttachment 请求,该消息包含 ResponseCode 值 NoError,指示已成功创建附件和新创建的附件的 AttachmentId。
创建新消息并附加了项后,可以通过调用 SendItem 操作来发送此新创建的消息。
<?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:t="http://schemas.microsoft.com/exchange/services/2006/types"
xmlns:soap="https://schemas.xmlsoap.org/soap/envelope/">
<soap:Header>
<t:RequestServerVersion Version="Exchange2010" />
</soap:Header>
<soap:Body>
<m:SendItem SaveItemToFolder="true">
<m:ItemIds>
<t:ItemId Id="jDKsAAA="
ChangeKey="CQAAABYAAAAFI5DJmZv+TLtyLOLIF1S5AAAZi/q/" />
</m:ItemIds>
<m:SavedItemFolderId>
<t:DistinguishedFolderId Id="sentitems" />
</m:SavedItemFolderId>
</m:SendItem>
</soap:Body>
</soap:Envelope>
服务器使用 SendItemResponse 邮件响应 SendItem 请求,其中包括 ResponseCode 值 NoError,表示电子邮件已成功发送。
使用 EWS 托管 API 创建包含内联附件的电子邮件
下面的代码示例演示如何通过以下方式创建具有内联附件的电子邮件:
使用 EmailMessage 对象创建电子邮件。
将 EmailMessage.Body 属性设置为包含内联附件的 HTML 正文。
使用 AttachmentCollection.AddFileAttachment 方法将附件添加到邮件中。
使用 EmailMessage.SendAndSaveCopy 方法将邮件发送给收件人,并将邮件保存在“已发送邮件”文件夹中。
此示例假定 service 是有效的 ExchangeService 对象,且用户已通过 Exchange 服务器的身份验证。
public static void CreateEmailWithInlineAttachment(ExchangeService service)
{
// Create the HTML body with the content identifier of the attachment.
string html = @"<html>
<head>
</head>
<body>
<img width=100 height=100 id=""1"" src=""cid:Party.jpg"">
</body>
</html>";
// Create the email message.
EmailMessage message = new EmailMessage(service);
message.Subject = "Inline Attachment";
message.Body = new MessageBody(BodyType.HTML, html);
message.ToRecipients.Add("sadie@contoso.com");
// Add the attachment to the local copy of the email message.
string file = @"C:\Temp\Party.jpg";
message.Attachments.AddFileAttachment("Party.jpg", file);
message.Attachments[0].IsInline = true;
message.Attachments[0].ContentId = "Party.jpg";
// Send the mail and save a copy in the Sent Items folder.
// This method results in a CreateItem and SendItem call to EWS.
message.SendAndSaveCopy();
}
使用 EWS 创建包含内联附件的电子邮件
下面的代码示例演示如何使用 CreateItem 操作创建包含内联文件附件的电子邮件。 Body 元素的 BodyType 属性指示内容采用 HTML 格式,并包含图像源。 这也是使用 EWS 托管 API 创建包含内联附件的电子邮件时 EWS 托管 API 发送的 XML 请求之一。
<?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:t="http://schemas.microsoft.com/exchange/services/2006/types"
xmlns:soap="https://schemas.xmlsoap.org/soap/envelope/">
<soap:Header>
<t:RequestServerVersion Version="Exchange2010" />
</soap:Header>
<soap:Body>
<m:CreateItem MessageDisposition="SaveOnly">
<m:Items>
<t:Message>
<t:Subject>Inline Attachment</t:Subject>
<t:Body BodyType="HTML">
&lt;html&gt;
&lt;head&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;img width=100 height=100 id="1" src="cid:Party.jpg"&gt;
&lt;/body&gt;
&lt;/html&gt;
</t:Body>
<t:ToRecipients>
<t:Mailbox>
<t:EmailAddress>sadie@contoso.com</t:EmailAddress>
</t:Mailbox>
</t:ToRecipients>
</t:Message>
</m:Items>
</m:CreateItem>
</soap:Body>
</soap:Envelope>
服务器使用 CreateItemResponse 邮件响应 CreateItem 请求,其中包括 ResponseCode 值 NoError(表示电子邮件创建成功)和新创建邮件的 ItemId。
使用 EWS 托管 API 将附件添加到现有电子邮件
下面的代码示例演示如何通过以下方式将附件添加到现有电子邮件:
使用 EmailMessage.Bind 方法绑定到现有电子邮件。
使用 AddFileAttachment 方法向邮件添加文件附件。
通过调用 EmailMessage.Update 方法保存更新。
此示例假定 service 是有效的 ExchangeService 对象,且用户已通过 Exchange 服务器的身份验证。
public static void AddAttachmentToExisting(ExchangeService service, ItemId itemId)
{
// This method results in a GetItem call to EWS.
EmailMessage message = EmailMessage.Bind(service, itemId);
message.Attachments.AddFileAttachment("C:\\temp\\FileAttachment.txt");
// This method results in a CreateAttachment call to EWS.
message.Update(ConflictResolutionMode.AlwaysOverwrite);
}
使用 EWS 将附件添加到现有电子邮件
下面的代码示例演示如何使用 CreateAttachment 操作将文件附件添加到现有电子邮件。 这也是使用 EWS 托管 API 将 附件添加到现有电子邮件时 EWS 托管 API 发送的 XML 请求之一。
<?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:t="http://schemas.microsoft.com/exchange/services/2006/types"
xmlns:soap="https://schemas.xmlsoap.org/soap/envelope/">
<soap:Header>
<t:RequestServerVersion Version="Exchange2007_SP1" />
<t:TimeZoneContext>
<t:TimeZoneDefinition Id="Central Standard Time" />
</t:TimeZoneContext>
</soap:Header>
<soap:Body>
<m:CreateAttachment>
<m:ParentItemId Id="uqE2AAA=" />
<m:Attachments>
<t:FileAttachment>
<t:Name>FileAttachment.txt</t:Name>
<t:Content>VGhpcyBpcyBhIGZpbGUgYXR0YWNobWVudC4=</t:Content>
</t:FileAttachment>
</m:Attachments>
</m:CreateAttachment>
</soap:Body>
</soap:Envelope>
服务器使用 CreateAttachmentResponse 消息响应 CreateAttachment 请求,该消息包含 ResponseCode 值 NoError,指示已成功创建附件和新创建的附件的 AttachmentId。
<?xml version="1.0" encoding="utf-8"?>
<s:Envelope xmlns:s="https://schemas.xmlsoap.org/soap/envelope/">
<s:Header>
<h:ServerVersionInfo MajorVersion="15"
MinorVersion="0"
MajorBuildNumber="939"
MinorBuildNumber="12"
Version="V2_11"
xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
xmlns="http://schemas.microsoft.com/exchange/services/2006/types"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" />
</s:Header>
<s:Body xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<m:CreateAttachmentResponse xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages"
xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types">
<m:ResponseMessages>
<m:CreateAttachmentResponseMessage ResponseClass="Success">
<m:ResponseCode>NoError</m:ResponseCode>
<m:Attachments>
<t:FileAttachment>
<t:AttachmentId Id="yRLhCh8="
RootItemId="uqE2AAA="
RootItemChangeKey="CQAAABYAAAAFI5DJmZv+TLtyLOLIF1S5AAAXulcf" />
</t:FileAttachment>
</m:Attachments>
</m:CreateAttachmentResponseMessage>
</m:ResponseMessages>
</m:CreateAttachmentResponse>
</s:Body>
</s:Envelope>