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

Automatically forward message



 
 
Thread Tools Search this Thread Display Modes
  #1  
Old September 14th 06, 05:21 PM posted to microsoft.public.outlook.program_vba
BruceS
external usenet poster
 
Posts: 5
Default Automatically forward message

Hi, folks!

I (on the east coast) and another person (on the west cost) provide tech
support for a small company. We have a "support" email account set up on a
"freebie" (TMSoft) email server. I have my Outlook 2002 set up to pick up
those emails.

What I want to do is, during specified hours each day, have those emails
automatically forwarded to the west coast person. I looked in the inbox
rules and did not see anything that would even forward, much less forward
during only certain times.

I'm pretty good with VBA in Access but have never really done any
customization for Outlook. Before diving into more programming, I wanted to
see if there was anything already out there that would solve my problem.

Can anyone help?

Thanks,
Bruce
  #2  
Old September 15th 06, 07:00 AM posted to microsoft.public.outlook.program_vba
Michael Bauer [MVP - Outlook]
external usenet poster
 
Posts: 1,885
Default Automatically forward message

Am Thu, 14 Sep 2006 08:21:03 -0700 schrieb BruceS:

Bruce, that´s quite simple: You can use the ItemAdd event of the Inbox (see
VBA help for an example). In that check the time and call the item´s Forward
method, which returns a new MailItem object. Add the address to it and call
that item´s Send method.

In OL XP you´d get a security prompt at the latest by calling the Send
method. You could display the message instead and press the Send button
manually, or use the Redemption (www.dimastr.com) to avoid that.

--
Viele Gruesse / Best regards
Michael Bauer - MVP Outlook
-- www.VBOffice.net --


Hi, folks!

I (on the east coast) and another person (on the west cost) provide tech
support for a small company. We have a "support" email account set up on

a
"freebie" (TMSoft) email server. I have my Outlook 2002 set up to pick up
those emails.

What I want to do is, during specified hours each day, have those emails
automatically forwarded to the west coast person. I looked in the inbox
rules and did not see anything that would even forward, much less forward
during only certain times.

I'm pretty good with VBA in Access but have never really done any
customization for Outlook. Before diving into more programming, I wanted

to
see if there was anything already out there that would solve my problem.

Can anyone help?

Thanks,
Bruce

  #3  
Old September 15th 06, 02:06 PM posted to microsoft.public.outlook.program_vba
BruceS
external usenet poster
 
Posts: 5
Default Automatically forward message

Michael,
Thanks for responding. I've run into the SendTo required prompt (What a
pain!) doing Access apps. Can't use that because it requires a response for
each message and I'll hopefully be doing something more fun than working when
it pops up. Unless someone knows a way around the prompt, that would be a
deal breaker.
Bruce

"Michael Bauer [MVP - Outlook]" wrote:

Am Thu, 14 Sep 2006 08:21:03 -0700 schrieb BruceS:

Bruce, that´s quite simple: You can use the ItemAdd event of the Inbox (see
VBA help for an example). In that check the time and call the item´s Forward
method, which returns a new MailItem object. Add the address to it and call
that item´s Send method.

In OL XP you´d get a security prompt at the latest by calling the Send
method. You could display the message instead and press the Send button
manually, or use the Redemption (www.dimastr.com) to avoid that.

--
Viele Gruesse / Best regards
Michael Bauer - MVP Outlook
-- www.VBOffice.net --


Hi, folks!

I (on the east coast) and another person (on the west cost) provide tech
support for a small company. We have a "support" email account set up on

a
"freebie" (TMSoft) email server. I have my Outlook 2002 set up to pick up
those emails.

What I want to do is, during specified hours each day, have those emails
automatically forwarded to the west coast person. I looked in the inbox
rules and did not see anything that would even forward, much less forward
during only certain times.

I'm pretty good with VBA in Access but have never really done any
customization for Outlook. Before diving into more programming, I wanted

to
see if there was anything already out there that would solve my problem.

Can anyone help?

Thanks,
Bruce


  #4  
Old September 16th 06, 09:13 AM posted to microsoft.public.outlook.program_vba
Michael Bauer [MVP - Outlook]
external usenet poster
 
Posts: 1,885
Default Automatically forward message

Am Fri, 15 Sep 2006 05:06:02 -0700 schrieb BruceS:

As I told you, please visit www.dimastr.com/redemption

All you need to know about the security issues you can read he
http://www.outlookcode.com/d/sec.htm

--
Viele Gruesse / Best regards
Michael Bauer - MVP Outlook
-- www.VBOffice.net --


Michael,
Thanks for responding. I've run into the SendTo required prompt (What a
pain!) doing Access apps. Can't use that because it requires a response

for
each message and I'll hopefully be doing something more fun than working

when
it pops up. Unless someone knows a way around the prompt, that would be a
deal breaker.
Bruce

"Michael Bauer [MVP - Outlook]" wrote:

Am Thu, 14 Sep 2006 08:21:03 -0700 schrieb BruceS:

Bruce, that´s quite simple: You can use the ItemAdd event of the Inbox

(see
VBA help for an example). In that check the time and call the item´s

Forward
method, which returns a new MailItem object. Add the address to it and

call
that item´s Send method.

In OL XP you´d get a security prompt at the latest by calling the Send
method. You could display the message instead and press the Send button
manually, or use the Redemption (www.dimastr.com) to avoid that.

--
Viele Gruesse / Best regards
Michael Bauer - MVP Outlook
-- www.VBOffice.net --


Hi, folks!

I (on the east coast) and another person (on the west cost) provide tech
support for a small company. We have a "support" email account set up

on
a
"freebie" (TMSoft) email server. I have my Outlook 2002 set up to pick

up
those emails.

What I want to do is, during specified hours each day, have those emails
automatically forwarded to the west coast person. I looked in the inbox
rules and did not see anything that would even forward, much less

forward
during only certain times.

I'm pretty good with VBA in Access but have never really done any
customization for Outlook. Before diving into more programming, I

wanted
to
see if there was anything already out there that would solve my problem.

Can anyone help?

Thanks,
Bruce


  #5  
Old September 15th 06, 11:21 AM posted to microsoft.public.outlook.program_vba
Dan Pascal
external usenet poster
 
Posts: 51
Default Automatically forward message

There are two ways you can to do that:

1. Using a MS Outlook add-in (an example would be Auto Reply Manager for
Outlook; you can find it he
http://www.emailaddressmanager.com/o...uto-reply.html)

2. Using a MS Outlook VBA script (which you can do it yourself or you can
find it on the internet)


"BruceS" wrote in message
...
Hi, folks!

I (on the east coast) and another person (on the west cost) provide tech
support for a small company. We have a "support" email account set up on
a
"freebie" (TMSoft) email server. I have my Outlook 2002 set up to pick up
those emails.

What I want to do is, during specified hours each day, have those emails
automatically forwarded to the west coast person. I looked in the inbox
rules and did not see anything that would even forward, much less forward
during only certain times.

I'm pretty good with VBA in Access but have never really done any
customization for Outlook. Before diving into more programming, I wanted
to
see if there was anything already out there that would solve my problem.

Can anyone help?

Thanks,
Bruce



  #6  
Old September 15th 06, 02:18 PM posted to microsoft.public.outlook.program_vba
BruceS
external usenet poster
 
Posts: 5
Default Automatically forward message

Dan,
Thanks for repsonding! I've checked out the link. Looks like that may
work. The other approach won't because of the "security" in SendTo.
Best,
Bruce

"Dan Pascal" wrote:

There are two ways you can to do that:

1. Using a MS Outlook add-in (an example would be Auto Reply Manager for
Outlook; you can find it he
http://www.emailaddressmanager.com/o...uto-reply.html)

2. Using a MS Outlook VBA script (which you can do it yourself or you can
find it on the internet)


"BruceS" wrote in message
...
Hi, folks!

I (on the east coast) and another person (on the west cost) provide tech
support for a small company. We have a "support" email account set up on
a
"freebie" (TMSoft) email server. I have my Outlook 2002 set up to pick up
those emails.

What I want to do is, during specified hours each day, have those emails
automatically forwarded to the west coast person. I looked in the inbox
rules and did not see anything that would even forward, much less forward
during only certain times.

I'm pretty good with VBA in Access but have never really done any
customization for Outlook. Before diving into more programming, I wanted
to
see if there was anything already out there that would solve my problem.

Can anyone help?

Thanks,
Bruce




  #7  
Old September 15th 06, 11:37 AM posted to microsoft.public.outlook.program_vba
[email protected]
external usenet poster
 
Posts: 10
Default Automatically forward message

I had the same problem with rules wizard, in new rules set up, you need
to say select check messages when they arrive, set the condition (doubt
if you can set a time interval) then in the following screens you get
the option of what to do with the message(s) [you have to scroll down
the list of actions to see forward].
BruceS wrote:

Hi, folks!

I (on the east coast) and another person (on the west cost) provide tech
support for a small company. We have a "support" email account set up on a
"freebie" (TMSoft) email server. I have my Outlook 2002 set up to pick up
those emails.

What I want to do is, during specified hours each day, have those emails
automatically forwarded to the west coast person. I looked in the inbox
rules and did not see anything that would even forward, much less forward
during only certain times.

I'm pretty good with VBA in Access but have never really done any
customization for Outlook. Before diving into more programming, I wanted to
see if there was anything already out there that would solve my problem.

Can anyone help?

Thanks,
Bruce


  #8  
Old September 15th 06, 02:32 PM posted to microsoft.public.outlook.program_vba
BruceS
external usenet poster
 
Posts: 5
Default Automatically forward message

Harold,
Thanks for replying. You're right, I didn't see Forward, and it won't allow
setting a time interval, only days. Will keep looking.
Bruce

" wrote:

I had the same problem with rules wizard, in new rules set up, you need
to say select check messages when they arrive, set the condition (doubt
if you can set a time interval) then in the following screens you get
the option of what to do with the message(s) [you have to scroll down
the list of actions to see forward].
BruceS wrote:

Hi, folks!

I (on the east coast) and another person (on the west cost) provide tech
support for a small company. We have a "support" email account set up on a
"freebie" (TMSoft) email server. I have my Outlook 2002 set up to pick up
those emails.

What I want to do is, during specified hours each day, have those emails
automatically forwarded to the west coast person. I looked in the inbox
rules and did not see anything that would even forward, much less forward
during only certain times.

I'm pretty good with VBA in Access but have never really done any
customization for Outlook. Before diving into more programming, I wanted to
see if there was anything already out there that would solve my problem.

Can anyone help?

Thanks,
Bruce



  #9  
Old September 15th 06, 11:38 AM posted to microsoft.public.outlook.program_vba
[email protected]
external usenet poster
 
Posts: 10
Default Automatically forward message

I had a similar problem with rules wizard in trying to set up a simple
autoforward, in new rules set up, you need to say select check messages
when they arrive, set the condition (doubt if you can set a time
interval) then in the following screens you get the option of what to
do with the message(s) [you have to scroll down the list of actions to
see forward].
BruceS wrote:

Hi, folks!

I (on the east coast) and another person (on the west cost) provide tech
support for a small company. We have a "support" email account set up on a
"freebie" (TMSoft) email server. I have my Outlook 2002 set up to pick up
those emails.

What I want to do is, during specified hours each day, have those emails
automatically forwarded to the west coast person. I looked in the inbox
rules and did not see anything that would even forward, much less forward
during only certain times.

I'm pretty good with VBA in Access but have never really done any
customization for Outlook. Before diving into more programming, I wanted to
see if there was anything already out there that would solve my problem.

Can anyone help?

Thanks,
Bruce


  #10  
Old September 15th 06, 02:23 PM posted to microsoft.public.outlook.program_vba
BruceS
external usenet poster
 
Posts: 5
Default Automatically forward message

What we ended up doing:

TMSoft allowed us to forward all "support" emails to both techs. (It would
not allow doing so only at certain hours.) Each tech set up a special folder
in their inbox to receive them. We just delete/ignore any that arrive when
we are not on duty.
Bruce

"BruceS" wrote:

Hi, folks!

I (on the east coast) and another person (on the west cost) provide tech
support for a small company. We have a "support" email account set up on a
"freebie" (TMSoft) email server. I have my Outlook 2002 set up to pick up
those emails.

What I want to do is, during specified hours each day, have those emails
automatically forwarded to the west coast person. I looked in the inbox
rules and did not see anything that would even forward, much less forward
during only certain times.

I'm pretty good with VBA in Access but have never really done any
customization for Outlook. Before diving into more programming, I wanted to
see if there was anything already out there that would solve my problem.

Can anyone help?

Thanks,
Bruce

 




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
Forward Original message MN Outlook - General Queries 1 September 8th 06 02:46 PM
Forward an reply message Luis Tarzia Outlook - General Queries 1 August 18th 06 04:00 PM
Forward a Message glitch grsmcse Outlook - Installation 2 July 27th 06 01:16 PM
Forward message intact? Terry Pinnell Outlook Express 3 July 6th 06 04:57 AM
Message disapears when I reply or forward a message Duane Hubbard Outlook - General Queries 1 February 8th 06 06:56 PM


All times are GMT +1. The time now is 08:39 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.