S
salad
I am using automation from Access to send an email. Here's some code
from MS and it uses the Resolve method to do something...I'm not sure
what. Is "resolving" necessary? I simply want to send out an email, I
really don't care whether or not the person is in an address book entry,
simply that the person gets the email. Can you clarify what Resolve does?
'Add a TO recipient(s) to the message.
Set objOutlookRecip = .Recipients.Add("(e-mail address removed)")
objOutlookRecip.Type = olto
' Resolve each Recipient's name.
For Each objOutlookRecip In .Recipients
objOutlookRecip.Resolve
Next
from MS and it uses the Resolve method to do something...I'm not sure
what. Is "resolving" necessary? I simply want to send out an email, I
really don't care whether or not the person is in an address book entry,
simply that the person gets the email. Can you clarify what Resolve does?
'Add a TO recipient(s) to the message.
Set objOutlookRecip = .Recipients.Add("(e-mail address removed)")
objOutlookRecip.Type = olto
' Resolve each Recipient's name.
For Each objOutlookRecip In .Recipients
objOutlookRecip.Resolve
Next