Recipients
Gets the recipients of the email message specified in the To field.
Values
Examples
Copy
var MyAddressList;
var singleaddress;
MyAddressList = email.Recipients;
// Get the first email address from the list.
singleaddress = MyAddressList.Items(0).Address;
Returns the first email address from the To field.