
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