I am sending e-mail from excel; I am having problem with this portion of the code:
'---------------------------------------------------
With .Recipients.Add(RecipientEmail)
.Type = olTo
If Not .Resolve Then
MsgBox "Unable to resolve address."
Exit Sub
End If
End With
'--------------------------------------------------------
The “RecipientEmail” is a value from an Excel Cell; everything works fine as long as I have only one e-mail address in that Excel Cell; If I have multiple addresses, separated by “;” (ex: email1@xxx.com; email2@xxx.com; and so on….), than, I am getting the "Unable to resolve address."
How can I send one e-mail to multiple recipients?
Thanks
Bookmarks