![]() |
If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. |
|
|
Thread Tools | Search this Thread | Display Modes |
#1
|
|||
|
|||
![]()
I need to save an attachment to a specific network drive/folder if an email
comes from a specific person. I know som excel vba but nothing in access, can u guys help me out? Thanks!~ |
Ads |
#2
|
|||
|
|||
![]() You can create a rule in Outlook to run a script that might look like this: Public Sub SaveAtt(Mail as Outlook.MailItem) Dim Att as Outlook.Attachment If Mail.Attachments.Count Then Set Att=Mail.Attachments(1) Att.SaveAsFile "c:\" & Att.Filename Endif End Sub -- Best regards Michael Bauer - MVP Outlook Category Manager - Manage and share your categories: SAM - The Sending Account Manager: http://www.vboffice.net/product.html?lang=en Am Wed, 7 Apr 2010 12:03:03 -0700 schrieb Joe: I need to save an attachment to a specific network drive/folder if an comes from a specific person. I know som excel vba but nothing in access, can u guys help me out? Thanks!~ |
#3
|
|||
|
|||
![]()
Should i set up a specific email and on a application server so that the
account is always logged in and not dependant on someone? How do i deal with something like that? My comp IT dept isnt handy at all and they are on the other side of the planet ![]() Thank you "Michael Bauer [MVP - Outlook]" wrote: You can create a rule in Outlook to run a script that might look like this: Public Sub SaveAtt(Mail as Outlook.MailItem) Dim Att as Outlook.Attachment If Mail.Attachments.Count Then Set Att=Mail.Attachments(1) Att.SaveAsFile "c:\" & Att.Filename Endif End Sub -- Best regards Michael Bauer - MVP Outlook Category Manager - Manage and share your categories: SAM - The Sending Account Manager: http://www.vboffice.net/product.html?lang=en Am Wed, 7 Apr 2010 12:03:03 -0700 schrieb Joe: I need to save an attachment to a specific network drive/folder if an comes from a specific person. I know som excel vba but nothing in access, can u guys help me out? Thanks!~ . |
#4
|
|||
|
|||
![]()
I set up a rule to run a script and got a message that it is a client-only
rul and will process only when outlook is running. I used your code and put it in a module i added in the vba ide under the moduels folder. Please see my prior post about doing it so that it will always run "Michael Bauer [MVP - Outlook]" wrote: You can create a rule in Outlook to run a script that might look like this: Public Sub SaveAtt(Mail as Outlook.MailItem) Dim Att as Outlook.Attachment If Mail.Attachments.Count Then Set Att=Mail.Attachments(1) Att.SaveAsFile "c:\" & Att.Filename Endif End Sub -- Best regards Michael Bauer - MVP Outlook Category Manager - Manage and share your categories: SAM - The Sending Account Manager: http://www.vboffice.net/product.html?lang=en Am Wed, 7 Apr 2010 12:03:03 -0700 schrieb Joe: I need to save an attachment to a specific network drive/folder if an comes from a specific person. I know som excel vba but nothing in access, can u guys help me out? Thanks!~ . |
#5
|
|||
|
|||
![]() The VBA macro can be run only within Outlook, not on the server. -- Best regards Michael Bauer - MVP Outlook Category Manager - Manage and share your categories: SAM - The Sending Account Manager: http://www.vboffice.net/product.html?lang=en Am Thu, 8 Apr 2010 05:01:01 -0700 schrieb Joe: Should i set up a specific email and on a application server so that the account is always logged in and not dependant on someone? How do i deal with something like that? My comp IT dept isnt handy at all and they are on the other side of the planet ![]() Thank you "Michael Bauer [MVP - Outlook]" wrote: You can create a rule in Outlook to run a script that might look like this: Public Sub SaveAtt(Mail as Outlook.MailItem) Dim Att as Outlook.Attachment If Mail.Attachments.Count Then Set Att=Mail.Attachments(1) Att.SaveAsFile "c:\" & Att.Filename Endif End Sub -- Best regards Michael Bauer - MVP Outlook Category Manager - Manage and share your categories: SAM - The Sending Account Manager: http://www.vboffice.net/product.html?lang=en Am Wed, 7 Apr 2010 12:03:03 -0700 schrieb Joe: I need to save an attachment to a specific network drive/folder if an comes from a specific person. I know som excel vba but nothing in access, can u guys help me out? Thanks!~ . |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
How to save attachment? | jayC[_2_] | Outlook - General Queries | 2 | April 22nd 08 03:06 PM |
attachment save | godadj | Outlook and VBA | 0 | February 11th 08 05:41 PM |
change incoming email attachment default to "open" vs "save as" | conroy | Outlook - General Queries | 1 | December 12th 06 02:58 AM |
script for Save as Attachment, when a email comes for a single person | [email protected] | Outlook and VBA | 1 | August 25th 06 07:01 AM |
How can I save an attachment that is an email to my inbox? | matt69 | Outlook and VBA | 5 | April 14th 06 07:19 AM |