Export Attachment automatically when email arrives

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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?
 
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.
 
Back
Top