I created this code snippet, which helps us to mail-disable in the Exchange Server 2003 SP2 (Native mode) – public folders. For this i tried this, i used C#.Net & CDOEXM. In this below code, i try to mail-disable the public folder named “publicfolder1”.
Read More...
In this we will see how to create & send e-mail messages using Exchange Web Service (EWS). It’s pretty simple with EWS to do. // Create the Exchange Service Binding ExchangeServiceBinding esb = new ExchangeServiceBinding(); // Add its relevant Credentials
Read More...
In this session, we will have a look about how to get the mailbox statistics information using from Exchange Server 2007 SP1 using C#.Net & Exchange Powershell. I tried the following code to get the mailbox statistics… 1: .... 2: //Create Runspaceconfiguraiton
Read More...
Code Snippet (C#): //Declaration part string strExchSvrName = "" ; string strMailbox = "" ; string strCalendarUri = "" ; string strDomain = "" ; string strUserName = "" ; string strPassword = "" ; System.Net.HttpWebRequest WebDavRequest = null ; System.Net.HttpWebResponse
Read More...
Transport agent implementation: In general the transport agent is implemented as a class that derives from either the SmtpReceiveAgent Class or the RoutingAgent Class . Every agent also needs a corresponding agent factory that derives from the SmtpReceiveAgentFactory
Read More...
Microsoft Product Lifecycle for various versions of Visual Basic Products Released General Availability Date Mainstream Support Retired Extended Support Retired Service Pack Retired Notes Visual Basic .NET 2002 Standard Edition 4/15/2002 7/10/2007 7/14/2009
Read More...
Please find my first web service client that i tried couple of months earlier that creates an e-mail item in the Sent Items folder. You can use Microsoft Visual Studio 2005 to create a simple Exchange Web Services client application like this. 1: using
Read More...