Export Attachment automatically when email arrives

J

JJ

Is there a way to export an attachment to an access database autimatically.
For instance, if you get an email with the subject "Information" with a text
attachment named "New" every week, is there a way to have that text
attachment "New" autimatically be sent to an access database?
 
M

Michael Bauer

Hi,

watch the ItemAdd event for the Inbox. If a mail arrives which you are
looking for, then you need to save the attachment to the filesystem
first. After that you could read the file as a string and add it to your
DB or just add a link to the file.
 
Top