I am using EWS through PHP to connect to a calendar on an exchange server and retrieve a certain set of CalendarItems. But the CalendarItems I receive do not have any field containing the body text of the calendar event.
Anyone have any idea how I would get the body text? (Using php-ews)
...
I have created a calendar item using EWS, which contained a plain-text body.
When I view this calendar item in Outlook 2007, nothing appears in the body, but when I view it using OWA (The web interface), I can see the body.
Anyone have any idea why this is?
...
Is there a working example anywhere of how to create a meeting request using EWS for Exchange 2007 using C#? Which properties are required? I have added a web service reference and can connect to create and send various items but keep getting the error "Set action is invalid for property." on the response messages. It never says what p...
I'm writing an app to process email attachments, using Exchange Web Services.
The general structure of my problem area is as follows:
public static void Main()
{
FindItemsResults<Item> findResults = FindItems();
foreach (Item item in findResults)
{
DoSomethingWithItem(item);
}
}
public static FindItemsResults<...
Currently a piece of our application creates and saves new mail messages to a user's drafts folder using Exchange Web Services. We would like to automatically append the user's default signature to these messages when creating them, but I have not been able to find a way to access the signature to append it to the body. The email messa...
I have a COM Outlook addin programmed in C++ (VS2005). I'm trying to see if within this addin I can get a random user or resource and see if it is available during a certain meeting time. Basically I'm trying to do something like getuseravailability() from the 2007 Exchange Web Service api listed below.
getuseravailability
Is this the...