PC Review


Reply
Thread Tools Rate Thread

Automatically forward message

 
 
=?Utf-8?B?QnJ1Y2VT?=
Guest
Posts: n/a
 
      14th Sep 2006
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
 
Reply With Quote
 
 
 
 
Michael Bauer [MVP - Outlook]
Guest
Posts: n/a
 
      15th Sep 2006
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

 
Reply With Quote
 
Dan Pascal
Guest
Posts: n/a
 
      15th Sep 2006
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 here:
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" <(E-Mail Removed)> wrote in message
news:115D0479-B5A3-40B8-A4E4-(E-Mail Removed)...
> 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



 
Reply With Quote
 
batesharold@hotmail.com
Guest
Posts: n/a
 
      15th Sep 2006
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


 
Reply With Quote
 
batesharold@hotmail.com
Guest
Posts: n/a
 
      15th Sep 2006
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


 
Reply With Quote
 
=?Utf-8?B?QnJ1Y2VT?=
Guest
Posts: n/a
 
      15th Sep 2006
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

>

 
Reply With Quote
 
=?Utf-8?B?QnJ1Y2VT?=
Guest
Posts: n/a
 
      15th Sep 2006
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 here:
> 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" <(E-Mail Removed)> wrote in message
> news:115D0479-B5A3-40B8-A4E4-(E-Mail Removed)...
> > 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

>
>
>

 
Reply With Quote
 
=?Utf-8?B?QnJ1Y2VT?=
Guest
Posts: n/a
 
      15th Sep 2006
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

 
Reply With Quote
 
=?Utf-8?B?QnJ1Y2VT?=
Guest
Posts: n/a
 
      15th Sep 2006
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

"(E-Mail Removed)" 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

>
>

 
Reply With Quote
 
Michael Bauer [MVP - Outlook]
Guest
Posts: n/a
 
      16th Sep 2006
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 here:
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

>>

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

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

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Want to use Rules to automatically forward message without attachm =?Utf-8?B?R0VT?= Microsoft Outlook Discussion 6 23rd Aug 2007 04:48 AM
prevent e-mail message recipients automatically forward a message =?Utf-8?B?SUg=?= Microsoft Outlook Form Programming 3 1st Nov 2006 09:00 PM
Automatically forward a message =?Utf-8?B?RWxmcG9pbnQ=?= Microsoft Outlook Discussion 2 4th Jan 2005 05:46 PM
Forward a message automatically =?Utf-8?B?V2Fsc2h5?= Microsoft Outlook VBA Programming 0 4th Nov 2004 03:09 PM
Automatically forward reminder message after so many days- is it possible Neil Microsoft Outlook 3 6th May 2004 08:24 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 11:13 PM.