How to reply on email using Queue items in Performer?

Hello,

I have a scenario where I need to reply on specific email in case business exception is thrown in Performer of the process. I use queue items as the data for processing.
Is there any way I can reply to specific email using queue item values? I couldn’t pass Mail as the object in queue I use for my purpose.

Thank you in advance.

Hey @bp777
you can try to extract the necessary information from the email (such as the sender’s email address, subject) and store them as string attributes in the queue item.
e.g.

  • To: queueItem.SpecificContent("SenderEmail").ToString
  • Subject: "RE: " + queueItem.SpecificContent("Subject").ToString
  • Body: Include a message informing the user about the business exception.