Independentsoft
- any library, any programming language
Home
Purchase
Support
Company
Contact
Exchange Web Services .NET
>
Tutorial
> Send message
The following example shows you how to send message.
C# example
using System; using System.Net; using Independentsoft.Exchange; namespace Sample { class Program { static void Main(string[] args) { NetworkCredential credential = new NetworkCredential("username", "password"); Service service = new Service("https://myserver/ews/Exchange.asmx", credential); try { Message message = new Message(); message.Subject = "Test"; message.Body = new Body("Body text"); message.ToRecipients.Add(new Mailbox("John@mydomain.com")); message.ToRecipients.Add(new Mailbox("Mark@mydomain.com")); ItemInfoResponse response = service.Send(message); } catch (ServiceRequestException ex) { Console.WriteLine("Error: " + ex.Message); Console.WriteLine("Error: " + ex.XmlMessage); Console.Read(); } catch (WebException ex) { Console.WriteLine("Error: " + ex.Message); Console.Read(); } } } }
VB example
Imports System Imports System.Net Imports Independentsoft.Exchange Namespace Sample Class Module1 Shared Sub Main(ByVal args As String()) Dim credential As New NetworkCredential("username", "password") Dim service As New Service("https://myserver/ews/Exchange.asmx", credential) Try Dim message As New Message() message.Subject = "Test" message.Body = New Body("Body text") message.ToRecipients.Add(New Mailbox("John@mydomain.com")) message.ToRecipients.Add(New Mailbox("Mark@mydomain.com")) Dim response As ItemInfoResponse = service.Send(message) Catch ex As ServiceRequestException Console.WriteLine("Error: " + ex.Message) Console.WriteLine("Error: " + ex.XmlMessage) Console.Read() Catch ex As WebException Console.WriteLine("Error: " + ex.Message) Console.Read() End Try End Sub End Class End Namespace
Need help? Ask our developers:
Name*
Email*
Message*