Process Email under condition of certain time

Hi All,

I need to get all email after last batch time. Currently, I’m using preBatchTime (e.g. 6/1/2020 10:30am) > dateObj (5/30/2020 11:30am), which means the email had been processed, then Break.

But can I use if loop to satify this condition instead of Break as I wanna the process continuing check next email rather than stopping the whole project. many thx

image

Hey @mason_wong

When reading mails, we generally split the mails into folders within the mailbox:

  • Inbox
  • Processed
  • Failed

All mails that land in Inbox are read and moved to either Processed or Failed. Processed means it was successful. Failed means that processing was not successful. On a regular basis, you can move the failed items back into Inbox to attempt reprocessing (depending on the process you are trying to run).

Would this solve your problem?

Hi Jacqui,

Thank you for your reply. Actually, my question is when I get an email and this email sending time is after last batch time, then save the attachment of this Email.

Else, if this email had been processed by last batch, then no need to do any further actions.

However, when I use Break activity, it usually starts to process the email in the bottom and this kinds of email belongs to last Batch.
Therefore, Break activity will stop the whole project and regarding as project finished.

So i was wondering use other way to loop the email and satisfy the condition of Time.

Hope I make it clear and look forward to your ideas

Hi.
How about using Time Trigger on Orchestrator?