Remove sender's address from reply mail activity in Microsoft 365 activities?

Hi I want to reply on top of an automated alert.
I am adding few IDs in reply To and CC. But don’t want to reply to the automated alert ID.
Can you please suggest how?
Right now, it’s sending reply to the automated alert ID as well.

1 Like

Hi @anjasing

Instead of Reply , create a new mail.

  1. Retrieve automated alert email details

    • Use appropriate UiPath activities to get the email details
  2. Extract sender’s email address and other relevant details

    • Extract sender’s email address
    • Extract other relevant details if needed
  3. Compose reply email

    • Prepare the reply email programmatically
    • Populate “To” and “CC” fields based on your requirements
  4. Exclude automated alert ID

    • Before populating “To” and “CC” fields, ensure exclusion of automated alert ID
  5. Send email

    • Use UiPath activities to send the composed email

Thanks