I'm trying to use the CreateItem function of Exchange Web Services for Exchange 2010 as per http://msdn.microsoft.com/en-us/library/exchange/aa566468%28v=exchg.140%29.aspx to create a message. No matter what I do, the messages always appear in Outlook as drafts. Here is the XML I am sending:
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types">
<soap:Header>
<t:RequestServerVersion Version="Exchange2010_SP1"/>
</soap:Header>
<soap:Body>
<CreateItem MessageDisposition="SaveOnly" xmlns="http://schemas.microsoft.com/exchange/services/2006/messages">
<SavedItemFolderId>
<t:FolderId ChangeKey="..." Id="..."/>
</SavedItemFolderId>
<Items>
<t:Message>
<t:MimeContent CharacterSet="UTF-8">BASE64 ENCODED MESSAGE</t:MimeContent>
<t:ItemClass>IPM.Note</t:ItemClass>
<t:Subject>THE SUBJECT LINE</t:Subject>
<t:Sensitivity>Normal</t:Sensitivity>
<t:Importance>Normal</t:Importance>
<t:Culture>en-US</t:Culture>
<t:IsRead>true</t:IsRead>
</t:Message>
</Items>
</CreateItem>
</soap:Body>
</soap:Envelope>
I've tried adding a <t:IsDraft>false</t:IsDraft> to the <t:Message/> but it appears that isn't allowed.