Hello Everyone,

I have tried to add more email recipients in my code but it won't work.

my Code:

With xEmailObj
.display
.To = "exampleemail.com"
.To1 = "example1email.com"
.To2 = "example2email.com"
.To3 = "example3email.com"
.To4 = "example4email.com"

I have tried with .toaddress or only .to

The only solution that i found is:

.To = "exampleemail.com" & ";" & "example1email.com"

Is there another solution?

Thank you