0 votes
by (290 points)
edited

Hi, I have never used Rebex product but in my current project I have to convert Rebex Email to Microsoft Exchange Webservices (EWS) Managed API 2.2. I am struggling in finding the equivalent classes in EWS that are correlated to Rebex classes. This is my first attempt in identifying them. Please let me know if I am on the right track.

Rebex ImapMessageInfo = EWS MailMessage Rebex MailMessage = ????? Rebex ImapFolderCollection = ????

What is the difference between MailMessage vs. ImapMessageInfo?

Applies to: Rebex Secure Mail

1 Answer

+1 vote
by (150k points)
edited by
 
Best answer

MailMessage represents a whole MIME (.eml) or Outlook (.msg) message, while ImapMessageInfo represents a more-or-less complete information about the message retreived from the IMAP server (it does not contain attachments, for example, although it may contain information about attachments and message HTML and text bodies).

by (290 points)
edited

Thank you for the answer.

...