Results 1 to 2 of 2

Thread: Verifying SMTP Addresses

  1. #1

    Thread Starter
    Member
    Join Date
    Jan 2001
    Location
    Chicago
    Posts
    40

    Question Verifying SMTP Addresses

    I created a smtp dll that uses the winsock object to send email. This connects with Lotus Notes on the server. Is there a way to verify addresses on the Lotus Notes address book or on a specific database?

  2. #2
    Frenzied Member
    Join Date
    Jan 2001
    Location
    Newbury, UK
    Posts
    1,878
    Easy with MAPI (Outlook Express / Outlook etc.):
    VB Code:
    1. MAPISession1.SignOn
    2. With MAPIMessages1
    3.         .SessionID = MAPISession1.SessionID
    4.         .Compose
    5.         .RecipAddress = “a.a&a.com”
    6. ‘ Might want to add the next line as well:
    7. ‘        .AddressResolveUI = True
    8.         .ResolveName
    9.         .MsgSubject = "My Subject"
    10.         .MsgNoteText = "My body"
    11.         .AttachmentPathName = "c:\temp\test.txt"
    12.         .Send
    13. End With
    14. MAPISession1.SignOff

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width