+1 vote

Can we convert Outlook.MailItem to IMail without saving it to disk using MsgConverter ?

by

1 Answer

0 votes

MsgConverter has a public constructor that takes a stream:

public MsgConverter(Stream stream)

If you can save Outlook.MailItem to stream, you can perform this operation in memory.

by (301k points)
...