Send Outlook Mail Message with multiple Receiver

Hello,

I would like to send an e-mail with the Send Outlook Mail Message activity to multiple recipients.

I have already tried to separate the recipients with a semicolon or comma. Unfortunately this did not work.

Is there a solution to this?

Many greetings

3 Likes

Hi
Welcome to UiPath community
Semicolon would work
Kindly have a view in this thread

Cheers @Kytyzow

1 Like

Hi @Kytyzow,

Try to give semicolon in this way it worked for me, It will be shown as only one mail in the outlook but if you see the mail it will be sent to multiple users…

outlook

Cheers.
Vashisht.

Thanks for the answers.

My email addresses are not strings, they are in an argument of strings.

I enter the emails as follows:
arg_ReceiverEmail(0);arg_ReceiverEmail(1)

or

arg_ReceiverEmail(0).ToString;arg_ReceiverEmail(1)ToString

Neither of the two variants works

@Palaniyappan
@Vashisht

image

@Kytyzow

I guess some spaces are there. Try like this.

    arg_ReceiverEmail(0).Tostring.Trim+";"+arg_ReceiverEmail(1).Tostring.Trim
2 Likes

As @lakshman mentioned you can join those arguments with β€œ;” string between them.

Cheers.
Vashisht.

1 Like

There were no spaces.
I missed the link (+β€œ;”+) of the two e-mails.

Thanks :slight_smile:

1 Like

@Kytyzow

Glad to help you. Happy Automation :grinning:

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