Not getting Proper message of To Fields of To Recipients

I am using Aspose version 16.11.0.0 in that i have given these input.


Input:
ÅÃÆÊŽŸšŠœŒëÿýçççäËË@shorcoas.com; ÅÃÆÊŽŸšŠœŒëÿýçççäËË@gmail.com; ÅÃÆÊŽŸšŠœŒëÿýçççäËË@yahomail.com


Output:output:??? like this.


I am using below property to add recipients.


pCalendrAttendees.AppointmentRecipients.Add(f_SplitEntries[Index], “”, p_RecipentType);



so please let me know how can i get proper text .

Hi,

Thank you for contacting Aspose support team.

I have tested the scenario using following sample code and observed no issue. Could you please give it a try using latest library Aspose.Email for .NET 7.4.0 and share the feedback?

MapiCalendar cal = new MapiCalendar();
cal.Attendees = new MapiCalendarAttendees();
cal.Attendees.AppointmentRecipients.Add("ÅÃÆÊŽŸšŠœŒëÿýçççäËË@shorcoas.com", "", MapiRecipientType.MAPI_TO);
cal.Attendees.AppointmentRecipients.Add("ÅÃÆÊŽŸšŠœŒëÿýçççäËË@gmail.com", "", MapiRecipientType.MAPI_TO);
cal.Attendees.AppointmentRecipients.Add("ÅÃÆÊŽŸšŠœŒëÿýçççäËË@yahomail.com", "", MapiRecipientType.MAPI_TO);
cal.Save(@"output.msg",AppointmentSaveFormat.Msg);
MapiMessage mapi = MapiMessage.FromFile(@"output.msg");

foreach(var rec in mapi.Recipients)
{
    Console.WriteLine(rec.EmailAddress);
}