Out of curiosity: can GetOutlookMail properties be overwritten?

Hello community

I was implementing a workflow and have most the parts parametrized. I was wondering if I can overwrite “Mark Email read” and “Only unread emails” in the “GetOutlookMail”-Properties (or any other function) and if so, how?
The point here is that some Workflows require me to only process unread emails while others might need to process any e-mails. I could simply reuse the now written modules with initializing the required variables… it’s a minor thing, I’m aware.

Thanks anyway

I think you can accomplish by creating Filter variable and pass it as per your requirement.

For “Only Unread”:

varFilter = “[Unread]=true”

For Mark Email Read:

Not sure, have not tried.