![]() |
If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. |
|
|
Thread Tools | Search this Thread | Display Modes |
#1
|
|||
|
|||
![]()
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 = ") objOutlookRecip.Type = olto ' Resolve each Recipient's name. For Each objOutlookRecip In .Recipients objOutlookRecip.Resolve Next |
Ads |
#2
|
|||
|
|||
![]()
Resolve matches a name with a valid address. Outlook always does that automatically for SMTP addresses. If you are using only full SMTP addresses, you shouldn't need to call Resolve.
-- Sue Mosher, Outlook MVP Author of Configuring Microsoft Outlook 2003 http://www.turtleflock.com/olconfig/index.htm and Microsoft Outlook Programming - Jumpstart for Administrators, Power Users, and Developers http://www.outlookcode.com/jumpstart.aspx "salad" wrote in message ink.net... 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 = ") objOutlookRecip.Type = olto ' Resolve each Recipient's name. For Each objOutlookRecip In .Recipients objOutlookRecip.Resolve Next |
#3
|
|||
|
|||
![]()
Sue Mosher [MVP-Outlook] wrote:
Resolve matches a name with a valid address. Outlook always does that automatically for SMTP addresses. If you are using only full SMTP addresses, you shouldn't need to call Resolve. Hi Sue: Thanks for the reply. Is a SMTP address something like " but if I passed "Joe Blow" instead I'd then want to Resolve? |
#4
|
|||
|
|||
![]()
Exactly. And you wouldn't want to send the message unless Recipient.Resolve returned True.
-- Sue Mosher, Outlook MVP Author of Configuring Microsoft Outlook 2003 http://www.turtleflock.com/olconfig/index.htm and Microsoft Outlook Programming - Jumpstart for Administrators, Power Users, and Developers http://www.outlookcode.com/jumpstart.aspx "salad" wrote in message ink.net... Is a SMTP address something like " but if I passed "Joe Blow" instead I'd then want to Resolve? |
#5
|
|||
|
|||
![]()
Sue Mosher [MVP-Outlook] wrote:
Exactly. And you wouldn't want to send the message unless Recipient.Resolve returned True. Thank you. |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Problems with Autocomplete/resolve Outlook 2003 | [email protected] | Outlook - General Queries | 0 | July 27th 06 09:04 PM |
How do I resolve desktop error code 85010014? | Mia | Outlook and VBA | 0 | June 15th 06 05:31 PM |
Resolve names in contacts as well as global address list | Liam Waters | Outlook - Using Contacts | 1 | May 4th 06 01:28 PM |
How to resolve error message 0X8004210A | grneyeldy1966 | Outlook - Installation | 1 | March 29th 06 05:32 AM |
How do I resolve error 1610 when installing Outlook2003? | plainolguy | Outlook - Installation | 0 | February 5th 06 11:51 PM |