Hi,
We are using version 2.2.0.1 for the Aspose.EMAIL. We upgraded to this hotfix version due to the error we were getting that is reported in this post: <a href="https://forum.aspose.com/t/38826
Our main use is to send out calendar appointments. This is working fine, however, if a meeting attendee proposes a new time for a meeting request that has been sent via the aspose libraries, the meeting organiser is unable to accept this new time. The outlook 2010 client has this button greyed out. If we create a manual meeting request, and an attendee proposes a new time, the meeting organiser can accept this change without any problems.
The following is a sample of the code used to create the appointment. As mentioned, the appointment is sent out fine, the problem occurs when an attendee attempts to propose a new time.
var msg = new MailMessage();
msg.From = from; //set the sender
msg.Body = emailBody;
msg.Subject = emailSubject;
msg.IsBodyHtml = true;
msg.To = to;
//create Appointment instance
Appointment app = new Appointment(location, startDateTime, endDateTime, msg.From, msg.To);
app.Summary = appointmentSubject;
app.Description = appointmentBody;
//add appointment to the message
msg.AddAlternateView(app.RequestApointment());
SmtpClient smtp = new SmtpClient(GetSmtpServer());
smtp.AuthenticationMethod = SmtpAuthentication.Auto;
smtp.Send(msg);
Any help would be appreciated.