Skip to main content

Sending Attachments via the Exchange Web Services in Exchange 2007

Anyone who has every tried to send an attachment using WebDAV will know that it is a real pain compared with CDOSYS/CDOEX where it was generally just one line of code. The new Exchange Web Services fall somewhere in the middle of these two while not a simple 1 line of code the functionality is there it is just not immediately easy to work out how to do it. Here are two methods I’ve found that work if you want to send a message with an attachment (or just create an item or attach something to an already existing item). Note there are probably some other methods you can use but hopefully this is a little more helpful then just the XML in the current SDK. The first method is to create an item in a folder (eg the drafts folder) using a createitem operation then using the itemid and changeid returned from the create item request use the createattachment operation to attach the file to the new item you created. Then using the new changeid returned after the createattachment operation use a senditem operation to send the Message. The other method is to use a Createitem operation and set the MessageDisposition to SendAndSaveCopy which means the item that is created in this operation will also be sent at the same time. When using this method if you want to send a message with an attachment you need to post a MIME encoded copy of the message you want to send (with the attachment included). To MIME encode a message and its attachments you need to use a MIME Encoder/Parser. While in .NET 2.0 there is the Systen.NET.Mail and MIME classes these namespaces don’t give you direct access to the MIME stream of a message (you can post the message to a local directory and then reopen the file from the file system but this isn’t a very practial method). Fortunalty the good old CDOSYS/CDOEX still makes the best tried and tested MIME parser around and is more the adequate for the task.

I’ve created a couple of C# samples of both methods that use the Webservices proxy object and also a sample for Powershell and VBS that use CDOSYS to get a Base64 encoded version of the MIME Encoded message and then post this XML.

I’ve put a downloadable copy of all the samples here the create,attach send C# sample looks like

using System;
using System.Collections.Generic;
using System.Text;
using System.Net;
using System.IO;
using System.Xml.Serialization;
using ewsCreateAttachSend.mgne12v2;

namespace ewsCreateAttachSend
{
class Program
{
static void Main(string[] args)
{
Program coControlobject = new Program();
ExchangeServiceBinding ewsServiceBinding = new ExchangeServiceBinding();
ewsServiceBinding.Credentials = new NetworkCredential("username", "password", "domain");
ewsServiceBinding.Url = @"https://servername/EWS/exchange.asmx";
MessageType emMessage = new MessageType();
emMessage.Subject = "Test Attachment Send";
emMessage.Body = new BodyType();
emMessage.Body.BodyType1 = BodyTypeType.Text;
emMessage.Body.Value = "Blah,Blah";
emMessage.ItemClass = "IPM.Note";
emMessage.ToRecipients = new EmailAddressType[1];
emMessage.ToRecipients[0] = new EmailAddressType();
emMessage.ToRecipients[0].EmailAddress = "recipient@domain.com";
emMessage.Sensitivity = SensitivityChoicesType.Normal;
ItemIdType iiCreateItemid = coControlobject.CreateDraftMessage(ewsServiceBinding, emMessage);
iiCreateItemid = coControlobject.CreateAttachment(ewsServiceBinding, "c:\\file.ext", iiCreateItemid);
coControlobject.SendMessage(ewsServiceBinding,iiCreateItemid);
}
private ItemIdType CreateDraftMessage(ExchangeServiceBinding ewsServiceBinding,MessageType emMessage) {
ItemIdType iiItemid = new ItemIdType();
CreateItemType ciCreateItemRequest = new CreateItemType();
ciCreateItemRequest.MessageDisposition = MessageDispositionType.SaveOnly;
ciCreateItemRequest.MessageDispositionSpecified = true;
ciCreateItemRequest.SavedItemFolderId = new TargetFolderIdType();
DistinguishedFolderIdType dfDraftsFolder = new DistinguishedFolderIdType();
dfDraftsFolder.Id = DistinguishedFolderIdNameType.drafts;
ciCreateItemRequest.SavedItemFolderId.Item = dfDraftsFolder;
ciCreateItemRequest.Items = new NonEmptyArrayOfAllItemsType();
ciCreateItemRequest.Items.Items = new ItemType[1];
ciCreateItemRequest.Items.Items[0] = emMessage ;
CreateItemResponseType createItemResponse = ewsServiceBinding.CreateItem(ciCreateItemRequest);
if (createItemResponse.ResponseMessages.Items[0].ResponseClass == ResponseClassType.Error)
{
Console.WriteLine("Error Occured");
Console.WriteLine(createItemResponse.ResponseMessages.Items[0].MessageText);
}
else
{
ItemInfoResponseMessageType rmResponseMessage = createItemResponse.ResponseMessages.Items[0] as ItemInfoResponseMessageType;
Console.WriteLine("Item was created");
Console.WriteLine("Item ID : " + rmResponseMessage.Items.Items[0].ItemId.Id.ToString());
Console.WriteLine("ChangeKey : " + rmResponseMessage.Items.Items[0].ItemId.ChangeKey.ToString());
iiItemid.Id = rmResponseMessage.Items.Items[0].ItemId.Id.ToString();
iiItemid.ChangeKey = rmResponseMessage.Items.Items[0].ItemId.ChangeKey.ToString();
}

return iiItemid;
}
private ItemIdType CreateAttachment(ExchangeServiceBinding ewsServiceBinding,String fnFileName,ItemIdType iiCreateItemid) {
ItemIdType iiAttachmentItemid = new ItemIdType();
FileStream fsFileStream = new FileStream(fnFileName, System.IO.FileMode.Open, System.IO.FileAccess.Read);
byte[] bdBinaryData = new byte[fsFileStream.Length];
long brBytesRead = fsFileStream.Read(bdBinaryData, 0, (int)fsFileStream.Length);
fsFileStream.Close();
FileAttachmentType faFileAttach = new FileAttachmentType();
faFileAttach.Content = bdBinaryData;
faFileAttach.Name = fnFileName;
CreateAttachmentType amAttachmentMessage = new CreateAttachmentType();
amAttachmentMessage.Attachments = new AttachmentType[1];
amAttachmentMessage.Attachments[0] = faFileAttach;
amAttachmentMessage.ParentItemId = iiCreateItemid;
CreateAttachmentResponseType caCreateAttachmentResponse = ewsServiceBinding.CreateAttachment(amAttachmentMessage);
if (caCreateAttachmentResponse.ResponseMessages.Items[0].ResponseClass == ResponseClassType.Error)
{
Console.WriteLine("Error Occured");
Console.WriteLine(caCreateAttachmentResponse.ResponseMessages.Items[0].MessageText);
}
else {
AttachmentInfoResponseMessageType amAttachmentResponseMessage = caCreateAttachmentResponse.ResponseMessages.Items[0] as AttachmentInfoResponseMessageType;
Console.WriteLine("Attachment was created");
Console.WriteLine("Change Key : " + amAttachmentResponseMessage.Attachments[0].AttachmentId.RootItemChangeKey.ToString());
iiAttachmentItemid.Id = amAttachmentResponseMessage.Attachments[0].AttachmentId.RootItemId.ToString();
iiAttachmentItemid.ChangeKey = amAttachmentResponseMessage.Attachments[0].AttachmentId.RootItemChangeKey.ToString();
}
return iiAttachmentItemid;
}
private void SendMessage(ExchangeServiceBinding ewsServiceBinding,ItemIdType iiCreateItemid) {
SendItemType siSendItem = new SendItemType();
siSendItem.ItemIds = new BaseItemIdType[1];
siSendItem.SavedItemFolderId = new TargetFolderIdType();
DistinguishedFolderIdType siSentItemsFolder = new DistinguishedFolderIdType();
siSentItemsFolder.Id = DistinguishedFolderIdNameType.sentitems;
siSendItem.SavedItemFolderId.Item = siSentItemsFolder;
siSendItem.SaveItemToFolder = true; ;
siSendItem.ItemIds[0] = (BaseItemIdType)iiCreateItemid;
SendItemResponseType srSendItemReponseMessage = ewsServiceBinding.SendItem(siSendItem);
if (srSendItemReponseMessage.ResponseMessages.Items[0].ResponseClass == ResponseClassType.Error)
{
Console.WriteLine("Error Occured");
Console.WriteLine(srSendItemReponseMessage.ResponseMessages.Items[0].MessageText);
}
else {
Console.WriteLine("Message Sent");
}

}
}
}

Popular posts from this blog

Testing and Sending email via SMTP using Opportunistic TLS and oAuth in Office365 with PowerShell

As well as EWS and Remote PowerShell (RPS) other mail protocols POP3, IMAP and SMTP have had OAuth authentication enabled in Exchange Online (Official announcement here ). A while ago I created  this script that used Opportunistic TLS to perform a Telnet style test against a SMTP server using SMTP AUTH. Now that oAuth authentication has been enabled in office365 I've updated this script to be able to use oAuth instead of SMTP Auth to test against Office365. I've also included a function to actually send a Message. Token Acquisition  To Send a Mail using oAuth you first need to get an Access token from Azure AD there are plenty of ways of doing this in PowerShell. You could use a library like MSAL or ADAL (just google your favoured method) or use a library less approach which I've included with this script . Whatever way you do this you need to make sure that your application registration  https://docs.microsoft.com/en-us/azure/active-directory/develop/quickstart-register-

The MailboxConcurrency limit and using Batching in the Microsoft Graph API

If your getting an error such as Application is over its MailboxConcurrency limit while using the Microsoft Graph API this post may help you understand why. Background   The Mailbox  concurrency limit when your using the Graph API is 4 as per https://docs.microsoft.com/en-us/graph/throttling#outlook-service-limits . This is evaluated for each app ID and mailbox combination so this means you can have different apps running under the same credentials and the poor behavior of one won't cause the other to be throttled. If you compared that to EWS you could have up to 27 concurrent connections but they are shared across all apps on a first come first served basis. Batching Batching in the Graph API is a way of combining multiple requests into a single HTTP request. Batching in the Exchange Mail API's EWS and MAPI has been around for a long time and its common, for email Apps to process large numbers of smaller items for a variety of reasons.  Batching in the Graph is limited to a m

How to test SMTP using Opportunistic TLS with Powershell and grab the public certificate a SMTP server is using

Most email services these day employ Opportunistic TLS when trying to send Messages which means that wherever possible the Messages will be encrypted rather then the plain text legacy of SMTP.  This method was defined in RFC 3207 "SMTP Service Extension for Secure SMTP over Transport Layer Security" and  there's a quite a good explanation of Opportunistic TLS on Wikipedia  https://en.wikipedia.org/wiki/Opportunistic_TLS .  This is used for both Server to Server (eg MTA to MTA) and Client to server (Eg a Message client like Outlook which acts as a MSA) the later being generally Authenticated. Basically it allows you to have a normal plain text SMTP conversation that is then upgraded to TLS using the STARTTLS verb. Not all servers will support this verb so if its not supported then a message is just sent as Plain text. TLS relies on PKI certificates and the administrative issue s that come around certificate management like expired certificates which is why I wrote th
All sample scripts and source code is provided by for illustrative purposes only. All examples are untested in different environments and therefore, I cannot guarantee or imply reliability, serviceability, or function of these programs.

All code contained herein is provided to you "AS IS" without any warranties of any kind. The implied warranties of non-infringement, merchantability and fitness for a particular purpose are expressly disclaimed.