Not able to set Organizer property

@Shital_diwate,

The issue has been fixed and fix version will be available for download in a couple of weeks. We’ll update you here once the fix version is available for download and appreciate your patience until then.

Thank you so much for information.
Waiting for the solution,Sooner is better.
Please give DLL ASAP.

@Shital_diwate,

Sure. We’ll write back here once the fix version is available for download.

We already spent a lot of time for this solution and will also take time for testing at our side.
we are close to our timeline and please provide the solution as soon as possible.

Please share the DLL .We stuck because of this.
After you share the DLL we need to spend time on testing as well.
More than a month we spend for this issue.
Which is not expected by my superior.
Waiting for your positive reply.

@Shital_diwate,

Please spare us some time so that we can look into any such possibility and share the DLL with you by tomorrow.

@Shital_diwate,

Please download the fix for this issue from here. It only contains fix for this issue and will not work for any of other issues you reported that have not been fixed yet.

Okay. Thank you. Will integrate it in our project immediately and let you know. Thank you for understanding the priority of issue.

@Shital_diwate,

You are welcome.

The issues you have found earlier (filed as EMAILNET-38947) have been fixed in this update. This message was posted using BugNotificationTool from Downloads module by kashif.iqbal

Hi,
As I mentioned earlier when we are taking new updates we have to face some regression.Here is one.
As when we are settling organizer with email id and name it is showing on behalf of value which is very very wrong.
Please escalate this to your team.

@Shital_diwate,

Thank you for writing to Aspose support again.

Please note that you shouldn’t use MapiRecipientType.MAPI_ORIG to create organizer, as this is marked as obsolete. Also after our fixes we don’t need to set Attendees collection for MapiCalendar(f_MapiCalendarObj.Attendees = CalendarAttendees; ), now it will be correctly converted from Appointment.

You may please give a try to the following sample code and share the feedback.

public static void Test()
{
    MailAddress organizer = new MailAddress("organizer@gmail.com", "Organaizer");
    string subject = "This is subject";
    string body = "This is body";
    DateTime startDate = DateTime.Now.AddHours(15);
    DateTime endDate = DateTime.Now.AddHours(16);
    MailAddressCollection mailAddressColl = new MailAddressCollection()
                                                            {
                                                                new MailAddress(
                                                                    "attendee1@gmail.com", "Attendee1"),
                                                                new MailAddress(
                                                                    "attendee2@gmail.com", "Attendee2"),
                                                                new MailAddress(
                                                                    "attendee3@gmail.com", "Attendee3"),
                                                            };
    Appointment appointment = new Appointment(
            null,
            subject,
            body,
            startDate,
            endDate,
            organizer,
            mailAddressColl);

    MailMessage mail = new MailMessage();
    mail.AddAlternateView(appointment.RequestApointment());
    MapiMessage mapi = MapiMessage.FromMailMessage(mail);
    MapiCalendar mapiCalendar = (MapiCalendar)mapi.ToMapiMessageItem();
    using (PersonalStorage pst = PersonalStorage.Create(@"Output_18_5.pst", FileFormatVersion.Unicode))
    {
        FolderInfo info = pst.CreatePredefinedFolder("Calendar", StandardIpmFolder.Appointments);
        info.AddMapiMessageItem(mapiCalendar);
    }
}

Capture.PNG (68.9 KB)
Output_18_5.zip (14.5 KB)

Thank you for giving information.I don’t have my system available now.Will check this tomorrow and let you know.

@Shital_diwate,

You are welcome.