A Microsoft Outlook email forum. Outlook Banter

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.

Go Back   Home » Outlook Banter forum » Microsoft Outlook Email Newsgroups » Outlook and VBA
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

Newbie- is this possible? (code to save attachments from server to network drive, without opening email locally)



 
 
Thread Tools Search this Thread Display Modes
  #1  
Old October 1st 08, 10:17 PM posted to microsoft.public.outlook.program_vba
ker_01
external usenet poster
 
Posts: 2
Default Newbie- is this possible? (code to save attachments from server to network drive, without opening email locally)

I have an internal customer who is getting data reports created and emailed
to him automatically. He has to make those available to me (and others) as
part of a current project. He set up his outlook so that any reports that
meet the subject line criteria are automatically sent to the whole team,
which wastes bandwidth, and I don't know if that forwarding works all the
time, or only when his machine is on.

Ideally, I'd like to set up his account so that the two attachments (always
with the same name) are instead downloaded to a shared area. It is highly
desirable for this to happen even if his PC is not on (perhaps he's on a
business trip or on vacation), but worst case would be still to at least
have them download instead of being forwarded.

Can anyone point me in the right direction? I'm pretty capable with the
Excel object model, but have almost no real experience with the Outlook
model.

Thanks,
Keith


Ads
  #2  
Old October 2nd 08, 09:02 AM posted to microsoft.public.outlook.program_vba
gp
external usenet poster
 
Posts: 13
Default Newbie- is this possible? (code to save attachments from server to

The logical solution would be to set up a shared mailbox on your mail server
to which the whole team has access, and arrange for the automatic e-mails to
be addressed to the shared mailbox and not to a personal e-mail account. Then
the whole team can get what they need anytime. You can prevent others having
access to the shared mailbox using user-groups and permissions.

G

"ker_01" wrote:

I have an internal customer who is getting data reports created and emailed
to him automatically. He has to make those available to me (and others) as
part of a current project. He set up his outlook so that any reports that
meet the subject line criteria are automatically sent to the whole team,
which wastes bandwidth, and I don't know if that forwarding works all the
time, or only when his machine is on.

Ideally, I'd like to set up his account so that the two attachments (always
with the same name) are instead downloaded to a shared area. It is highly
desirable for this to happen even if his PC is not on (perhaps he's on a
business trip or on vacation), but worst case would be still to at least
have them download instead of being forwarded.

Can anyone point me in the right direction? I'm pretty capable with the
Excel object model, but have almost no real experience with the Outlook
model.

Thanks,
Keith



  #3  
Old October 3rd 08, 01:57 PM posted to microsoft.public.outlook.program_vba
ker_01
external usenet poster
 
Posts: 2
Default Newbie- is this possible? (code to save attachments from server to

That sounds like a great way to ensure group access to the email.

My ultimate goal is to have the files automatically detach without requiring
user intervention, and without requiring a user to open that mailbox or have
their PC turned on. Once those files are automatically detaching to the
network drive from the Outlook server, then our other program can grab those
files and process them automagically.

My work with Excel VBA has all been "local" (code runs on the local
machine). Is this also true of Outlook? For example, if I want the
attachments to be detached to the network drive, would I need to put that
Outlook code on every user's PC and even then the files would still only be
transferred once someone opens Outlook so the code could run? If that's the
case, I probably need to go back to the folks emailing the files and work
out a non-email solution.

Thanks,
Keith

"GP" wrote in message
...
The logical solution would be to set up a shared mailbox on your mail
server
to which the whole team has access, and arrange for the automatic e-mails
to
be addressed to the shared mailbox and not to a personal e-mail account.
Then
the whole team can get what they need anytime. You can prevent others
having
access to the shared mailbox using user-groups and permissions.

G

"ker_01" wrote:

I have an internal customer who is getting data reports created and
emailed
to him automatically. He has to make those available to me (and others)
as
part of a current project. He set up his outlook so that any reports that
meet the subject line criteria are automatically sent to the whole team,
which wastes bandwidth, and I don't know if that forwarding works all the
time, or only when his machine is on.

Ideally, I'd like to set up his account so that the two attachments
(always
with the same name) are instead downloaded to a shared area. It is highly
desirable for this to happen even if his PC is not on (perhaps he's on a
business trip or on vacation), but worst case would be still to at least
have them download instead of being forwarded.

Can anyone point me in the right direction? I'm pretty capable with the
Excel object model, but have almost no real experience with the Outlook
model.

Thanks,
Keith





  #4  
Old October 3rd 08, 03:33 PM posted to microsoft.public.outlook.program_vba
gp
external usenet poster
 
Posts: 13
Default Newbie- is this possible? (code to save attachments from serve

VBA is a macro language for applications, in other works an application that
supports VBA needs to be running (typically Word, Excel, Outlook, etc). You
can't run a client side VBA macro if the PC is turned off. Even with a shared
mailbox, at least one user with access to the mailbox needs be be logged on
to run a VBA macro. I'm sure other programming languages can get arund this,
e.g. VB2005 or VB2008, but they are not my forte I'm afraid.

GP

"ker_01" wrote:

That sounds like a great way to ensure group access to the email.

My ultimate goal is to have the files automatically detach without requiring
user intervention, and without requiring a user to open that mailbox or have
their PC turned on. Once those files are automatically detaching to the
network drive from the Outlook server, then our other program can grab those
files and process them automagically.

My work with Excel VBA has all been "local" (code runs on the local
machine). Is this also true of Outlook? For example, if I want the
attachments to be detached to the network drive, would I need to put that
Outlook code on every user's PC and even then the files would still only be
transferred once someone opens Outlook so the code could run? If that's the
case, I probably need to go back to the folks emailing the files and work
out a non-email solution.

Thanks,
Keith

"GP" wrote in message
...
The logical solution would be to set up a shared mailbox on your mail
server
to which the whole team has access, and arrange for the automatic e-mails
to
be addressed to the shared mailbox and not to a personal e-mail account.
Then
the whole team can get what they need anytime. You can prevent others
having
access to the shared mailbox using user-groups and permissions.

G

"ker_01" wrote:

I have an internal customer who is getting data reports created and
emailed
to him automatically. He has to make those available to me (and others)
as
part of a current project. He set up his outlook so that any reports that
meet the subject line criteria are automatically sent to the whole team,
which wastes bandwidth, and I don't know if that forwarding works all the
time, or only when his machine is on.

Ideally, I'd like to set up his account so that the two attachments
(always
with the same name) are instead downloaded to a shared area. It is highly
desirable for this to happen even if his PC is not on (perhaps he's on a
business trip or on vacation), but worst case would be still to at least
have them download instead of being forwarded.

Can anyone point me in the right direction? I'm pretty capable with the
Excel object model, but have almost no real experience with the Outlook
model.

Thanks,
Keith






 




Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Save to the network \\network\publicfolders\contacts instead of the c:\drive Alex B.[_2_] Outlook - Using Contacts 0 September 14th 07 07:31 PM
Please help - VBA to save email to drive [email protected] Outlook and VBA 5 July 4th 07 03:34 AM
How To: Save incoming attachments to a network location Casey Outlook and VBA 1 October 18th 06 04:18 AM
Outlook Code: Newbie Trying to Do Too Much? [email protected] Outlook and VBA 1 May 18th 06 06:56 AM
Win2000 Server Email Storage .mbx files - Help Newbie!!! poppet Outlook - General Queries 1 March 22nd 06 12:53 PM


All times are GMT +1. The time now is 08:45 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.Search Engine Friendly URLs by vBSEO 2.4.0
Copyright ©2004-2025 Outlook Banter.
The comments are property of their posters.