Same mailchain in Outlook

Hi all,
I want to do mails on same mail chain with attaching excel different on daily basis can anyone give suggestions

@vhvinodsai

Use get mail using subject and then use reply to activity

If its one email you can go with message id as well but it would be a one time task to get message id and store it

Cheers

1 Like

@vhvinodsai,

You can follow this approach.

  1. Store first email message id into an asset.
  2. Add logic in your code to check if asset is null or empty, send fresh mail and get that latest sent email message id. Store that id in the asset.
  3. If the asset is not empty, get the last sent email with the message id. If using Outlook, use Get Outlook mail message and pass the message id in the property FilterByMessageIds
  4. This will give you the last sent email object. Just pass this email object to Reply To Outlook Mail Message. Configure the remaining properties as per need and done.
2 Likes

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.