Thank you.
We are using an exchange server. This being said, I was hoping for something
on the simple side as I am not working with people with a lot of technical
knowledge. As well, I was looking for something that could be maintained if I
was to leave this position.
Thanks Agin
The easy way to do this would be something like this:
1. create a table in Access into which you want to store the e-mails.
-- this could be an issue if you have attachments. Not entirely sure
how Access07 handles them, but you would have to deal with that part.
2. attach the Outlook folder you have the e-mails in to Access (file/
get external data/switch to Outlook....)
3. use the find unmatched query wizard to get the e-mails from the
Outlook Inbox that are not already in the Access table.
4. turn the query into an append query.
Then it depends on how frequently you want to check the Outlook
account for the e-mail messages. Danny Lesandrini has code on his
website, Inbox Watcher, that will periodically check the inbox for new
mail, (basically a form with a timer event) - and you could just have
the OnTimer event be to run your append query. Then you could set it
and forget it.
For your own sanity, you might want to store the information about
which mailbox to use and the password in separate custom database
properties and give the administrator a way to change these, should
the need arise. Just saves having to dig through your code and fix
things.