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 - General Queries
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

Customizing Auto Reply



 
 
Thread Tools Search this Thread Display Modes
  #1  
Old February 27th 06, 11:05 PM posted to microsoft.public.outlook
Paul
external usenet poster
 
Posts: 4
Default Customizing Auto Reply

I have several distribution groups set up in Exchange 2003 - I have also set
up auto replies to email's sent to those DG's - What I would like to do is
in 'have server reply using message'

Use a variable so it will respond in the subject line using something like

Thank you for your email regarding 'original subject goes here'

Is there any way to do this ??

Paul


  #2  
Old February 27th 06, 11:12 PM posted to microsoft.public.outlook
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,651
Default Customizing Auto Reply

No. The server can't do that kind of reply, at least not without an Exchange event script or event sink.

--
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003
http://www.turtleflock.com/olconfig/index.htm
and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
http://www.outlookcode.com/jumpstart.aspx


"Paul" wrote in message ...
I have several distribution groups set up in Exchange 2003 - I have also set
up auto replies to email's sent to those DG's - What I would like to do is
in 'have server reply using message'

Use a variable so it will respond in the subject line using something like

Thank you for your email regarding 'original subject goes here'

Is there any way to do this ??

Paul


  #3  
Old February 27th 06, 11:54 PM posted to microsoft.public.outlook
Paul
external usenet poster
 
Posts: 4
Default Customizing Auto Reply

Umm - a what ??

Sounds like something very complicated ... where would I being looking into
something like that ??

Paul

"Sue Mosher [MVP-Outlook]" wrote in message
...
No. The server can't do that kind of reply, at least not without an Exchange
event script or event sink.

--
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003
http://www.turtleflock.com/olconfig/index.htm
and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
http://www.outlookcode.com/jumpstart.aspx


"Paul" wrote in message
...
I have several distribution groups set up in Exchange 2003 - I have also
set
up auto replies to email's sent to those DG's - What I would like to do is
in 'have server reply using message'

Use a variable so it will respond in the subject line using something like

Thank you for your email regarding 'original subject goes here'

Is there any way to do this ??

Paul




  #4  
Old February 28th 06, 12:13 AM posted to microsoft.public.outlook
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,651
Default Customizing Auto Reply

It is complicated -- http://msdn.microsoft.com/exchange/ -- and unless you have the cooperation of the Exchange administrator, you won't get very far.

The client-side alternative is to leave Outlook running 24/7 with a Rules Wizard "run a script" rule for each DL. A "run a script" rule action actually uses not an external script but a VBA procedure with a MailItem or MeetingItem as its parameter. That item is processed by the code:


Sub RunAScriptRuleRoutine(MyMail As MailItem)
Dim strID As String
Dim olNS As Outlook.NameSpace
Dim oMail As Outlook.MailItem
Dim myReply as Outlook.MailItem

strID = MyMail.EntryID
Set olNS = Application.GetNamespace("MAPI")
Set olMail = olNS.GetItemFromID(strID)
' do stuff with oMail, e.g.
Set myReply = oMail.Reply
myReply.Subject = "Thank you for your email regarding " & oMail.Subject
myReply.Send

Set olMail = Nothing
Set olNS = Nothing
End Sub

That won't work, though, unless you have Outlook 2003, because of the Send method security prompts.


--
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003
http://www.turtleflock.com/olconfig/index.htm
and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
http://www.outlookcode.com/jumpstart.aspx


"Paul" wrote in message ...
Umm - a what ??

Sounds like something very complicated ... where would I being looking into
something like that ??

Paul

"Sue Mosher [MVP-Outlook]" wrote in message
...
No. The server can't do that kind of reply, at least not without an Exchange
event script or event sink.

"Paul" wrote in message
...
I have several distribution groups set up in Exchange 2003 - I have also
set
up auto replies to email's sent to those DG's - What I would like to do is
in 'have server reply using message'

Use a variable so it will respond in the subject line using something like

Thank you for your email regarding 'original subject goes here'

Is there any way to do this ??

Paul




  #5  
Old February 28th 06, 12:50 AM posted to microsoft.public.outlook
Paul
external usenet poster
 
Posts: 4
Default Customizing Auto Reply

I am the Exchange Administrator - and would fully cooperate with myself if I
knew how to do what you propose ... why did they make it so hard to do ?
UNIX is just a simple variable change in a .vacation file.

Paul

"Sue Mosher [MVP-Outlook]" wrote in message
...
It is complicated -- http://msdn.microsoft.com/exchange/ -- and unless you
have the cooperation of the Exchange administrator, you won't get very far.

The client-side alternative is to leave Outlook running 24/7 with a Rules
Wizard "run a script" rule for each DL. A "run a script" rule action
actually uses not an external script but a VBA procedure with a MailItem or
MeetingItem as its parameter. That item is processed by the code:


Sub RunAScriptRuleRoutine(MyMail As MailItem)
Dim strID As String
Dim olNS As Outlook.NameSpace
Dim oMail As Outlook.MailItem
Dim myReply as Outlook.MailItem

strID = MyMail.EntryID
Set olNS = Application.GetNamespace("MAPI")
Set olMail = olNS.GetItemFromID(strID)
' do stuff with oMail, e.g.
Set myReply = oMail.Reply
myReply.Subject = "Thank you for your email regarding " & oMail.Subject
myReply.Send

Set olMail = Nothing
Set olNS = Nothing
End Sub

That won't work, though, unless you have Outlook 2003, because of the Send
method security prompts.


--
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003
http://www.turtleflock.com/olconfig/index.htm
and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
http://www.outlookcode.com/jumpstart.aspx


"Paul" wrote in message
...
Umm - a what ??

Sounds like something very complicated ... where would I being looking
into
something like that ??

Paul

"Sue Mosher [MVP-Outlook]" wrote in message
...
No. The server can't do that kind of reply, at least not without an
Exchange
event script or event sink.

"Paul" wrote in message
...
I have several distribution groups set up in Exchange 2003 - I have also
set
up auto replies to email's sent to those DG's - What I would like to do
is
in 'have server reply using message'

Use a variable so it will respond in the subject line using something
like

Thank you for your email regarding 'original subject goes here'

Is there any way to do this ??

Paul






 




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
auto-accept newadmin Outlook - General Queries 1 February 23rd 06 09:21 PM
AUto Correct Johnfli Outlook - General Queries 1 February 23rd 06 08:52 PM
why cant I reply to certain recipients by reply or forwarding kjmac308 Outlook - General Queries 2 February 17th 06 07:45 PM
Auto Archive Newsgroups Outlook - General Queries 10 February 8th 06 05:29 AM
OL won't auto send/receive LT Outlook - General Queries 3 January 9th 06 01:13 AM


All times are GMT +1. The time now is 11:28 AM.


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.