Retrieve Email Address From Returned Mail 
Author Message
 Retrieve Email Address From Returned Mail

We send out Email messages to customers every day.

From these messages some are returned, because the Email account is closed.

Could I receive a suggestion on how to take the Email address from these
returned messages and place them into an Access table.

We would like to do the samething from Eidora.

Thank you for your assistance



Thu, 22 Apr 2004 12:42:40 GMT  
 Retrieve Email Address From Returned Mail
There are lots of ways of doing this kind of thing - it depends on your
programming experience.  Have a look at www.slipstick.com to find out how to
get the mail address from an incoming message.  Once you have done that you
can put it in an Access DataBase.  DAO is the easiest, but I would recommend
ADO though, otherwise just append the address to the end of a text file on a
server somewhere:

Public Sub AddAddress(strAddress as String)

    Dim f&
    f = freefile

    Open "C:\myFile.txt" for Append as #f
        print #f, strAddress
    Close #f

End Sub


Quote:
> We send out Email messages to customers every day.

> From these messages some are returned, because the Email account is
closed.

> Could I receive a suggestion on how to take the Email address from these
> returned messages and place them into an Access table.

> We would like to do the samething from Eidora.

> Thank you for your assistance



Sat, 24 Apr 2004 03:51:01 GMT  
 
 [ 2 post ] 

 Relevant Pages 

1. Retrieve SMTP email addresses of GAB address entries

2. Mail server's address from Email address

3. Retrieving Email Addresses from Outlook

4. Retrieving email address.

5. Retrieve Contact Email Address

6. Retrieving Email Addresses From Outlook/Exhange

7. Retrieving Email Addresses From Outlook/Exhange

8. Retrieving Sender's Email Address From MailItem

9. Retrieving senders' email address from Outlook Item

10. How to retrieve email addresses from the WAB ?

11. problem in retrieving e-mail address through VB

12. Specifying an e-mail address or Reply To address when sending mail

 

 
Powered by phpBB® Forum Software