Hallo,
how can i answer to Email (Exchange) ?
Best Regards,
Amir
Hallo,
how can i answer to Email (Exchange) ?
Best Regards,
Amir
Hi Amir,
IEWSClient client = EWSClient.GetEWSClient("https://outlook.office365.com/ews/exchange.asmx", "testUser", "pwd", "domain");
// Create instance of type MailMessage
MailMessage msg = new MailMessage();
msg.From = "sender@domain.com";
msg.To = "recipient@ domain.com ";
msg.Subject = "Sending message from exchange server";
msg.HtmlBody = "sending message from exchange
server
";
// Send the message
client.Send(msg);
Hello,
Thank you, but i would like to respond to an Email, no write a simple Email;
if i receive an Email, I answer.
Regards,
Amir
Hi Amir,