Reply to a gmail?

Is there any way to reply to a certain Gmail?

It seems like there is a reply activity for Outlook, but that’s not what we want.
I tried using “Send Mail Message” activity in GSuite package, but it only sends as a new email. This is also not what we want. We need to reply to a certain Gmail.

Is this attainable with UiPath?

1 Like

yah thats right
we have a reply outlook mail activity for outlook alone as of now
may be in future we might have that for gmail as well

but still we got an option…
Yes we can concatenate the mail body from the current mail with a new mail body and send that as a forwarded mail using only the SEND SMTP MAIL ACTIVITY
And sequence will be like this
—Get IMAP Mail activity
—FOR EACH activity with above variable as input
—inside the loop use SEND SMTP MAIL ACTIVITY where in the subject mention the subject we want like this
“Re:” + “your new subject”
and to person to whom we want to send that and finally the body content will include the current mailmessage body and also our new mail body content like this
item.Body.ToString + Environment.NewLine +”your new mail body content”

This will be like a forwarded mail but made with string manipulation

For more details this thread would give you some insights on this

Hope this would help you
Kindly try this and let know for any queries or clarification
Cheers @tomato25

1 Like

Thank you! I think that makes sense.

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