Hi everyone,
Please help solve the following issue. We need to send udate of meeting invitation with prefix in the email: "Updated: originalSubj" we need it for smtpClient and for ExchangeClient.
I tried it the following way:
_message.Subject = "Updated: "+ _subject,
var calendar = new Calendar("location", DateTime.Now, DateTime.Now, organizer, attendees)
{
Summary = _subject,
Description = _body
};
_message.To = calendar.Attendees;
_message.From = calendar.Organizer;
_message.AddCalendar(calendar);
When i send such email by
- smtpClient. Email is delivered without ‘Updated: ‘ in subject;<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" />
- exchangeClient. email is delivered with ‘Updated: ‘ in subject, but appointment in calendar is also displayed with such subject, and it is not correct.
Please advise how can I implement it for both exchangeClient and smtpClient.
Thank you in advance