How to create Orchestrator Queues for emails in a mailbox?

There are a few ways to do this, and @bogdan.nastase suggested a good one: using a Dispatcher and a Performer.

The problem is that currently the contents of queue items need to be serializable into a JSON string, and MailMessage is not (you can test by calling MyEmailMessage.GetType().IsSerializable).

Two alternatives are:

About @yashaswiniGowda’s question: They can be useful not only to deal with volume, but also for easier maintenance and more flexibility; so I would say yes!

8 Likes