A
Andy Boruta
I rebuild a distribution list by removing all members, then adding the
updated members. This allows for the email address autofill to work
properly. My problem is that email addresses that do not resolve using
RESOLVEALL (addresses external to my company) are not removed using
REMOVEMEMBERS method.
Any thoughts on how to get around this?
For x = 1 To myDistList.MemberCount
myRecipients2.Add myDistList.GetMember(x)
Next x
myRecipients2.ResolveAll
myDistList.RemoveMembers myRecipients2
Set myRecipients2 = Nothing
updated members. This allows for the email address autofill to work
properly. My problem is that email addresses that do not resolve using
RESOLVEALL (addresses external to my company) are not removed using
REMOVEMEMBERS method.
Any thoughts on how to get around this?
For x = 1 To myDistList.MemberCount
myRecipients2.Add myDistList.GetMember(x)
Next x
myRecipients2.ResolveAll
myDistList.RemoveMembers myRecipients2
Set myRecipients2 = Nothing