Send outlook mail vs smtp

Hello
If i’m using microsoft server, is there activities to repond on an email or should i only send new mails?

Office365 package also have “Reply To Email” / “Reply to Mail” activities.

Hello @Dhouha_Cherif

Assuming you have retrieved the original email
originalEmail = GetEmailFromMailbox()

Create a new email to simulate a reply
replyEmail = New MailMessage
replyEmail.Subject = "Re: " + originalEmail.Subject
replyEmail.To = originalEmail.Sender
replyEmail.Body = “Your reply message here.”

Send the new email
SendOutlookMailMessage(replyEmail)

Thanks & Cheers!!!

@Dhouha_Cherif

Use the “Reply To Outlook Mail Message” activity in UiPath to respond to an email on Microsoft Exchange Server.

cheers…!

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