Answer Email

Hallo,

how can i answer to Email (Exchange) ?

Best Regards,

Amir

Hi Amir,

Thank you for writing to Aspose support team.

Aspose.Email API supports sending email messages using ExchangeClient and ExchangeWebServiceClient as shown in the following code sample. Please let us know if we can be of any additional help to you in this regard. For more information on working with Exchange Server, please refer to our online documentation section “Programming Exchange”.

Sample Code:

// Create instance of
IEWSClient class by giving credentials

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,


I’m afraid to share that this feature is not supported at the moment. We already have a feature logged as NETWORKNET-33403 in our issue tracking system for provision of this functionality. However, it is not in our development plan in near future due to other high priority tasks. I have linked this thread with the logged ticket so that once the feature has been implemented, you’ll be notified automatically here via this thread.