Answered by:
OUT OF OFFICE AUTO REPLY ISSUE

Question
-
Is it possible to have a single email adress not be sent the out of office auto reply when they email me and I am out of the office. In my office if someone wants adress the entire staff they use this one email adress that sends us all an email. If I am out of the office I dont want them to have to see my out of office reply if they were just emailing everybody about snacks in the kitchen or something. Is there anything I can do so that this wont happen?
Friday, January 6, 2012 2:51 PM
Answers
-
It is posible, but only you've Exchange serwer account.
Et VBA you should write this code:
Private Sub Application_Quit() On Error Resume Next Dim oSession: Set oSession = CreateObject("MAPI.Session") If oSession Is Nothing Then Exit Sub oSession.Logon newSession:=False oSession.OutOfOffice = True oSession.OutOfOfficeText = "I'm out of office, call to my cellphone." oSession.Logoff End Sub
Oskar Shon, Office System MVPPress
if Helpful
- Marked as answer by Tony Chen CHN Sunday, January 15, 2012 3:28 PM
Friday, January 6, 2012 3:15 PM -
I think outlook 2010 has a functionality where in you can create your own distribution list. Its upto you, whether or not u need that DL to have the OOO emails
Prateek Dixit Windows Vista Desktop Administrator. Microsoft Certified Technology Specialist www.thetechnoclub.com www.seoexceed.com- Proposed as answer by Prateekttc Friday, January 6, 2012 5:44 PM
- Marked as answer by Tony Chen CHN Sunday, January 15, 2012 3:28 PM
Friday, January 6, 2012 5:44 PM
All replies
-
It is posible, but only you've Exchange serwer account.
Et VBA you should write this code:
Private Sub Application_Quit() On Error Resume Next Dim oSession: Set oSession = CreateObject("MAPI.Session") If oSession Is Nothing Then Exit Sub oSession.Logon newSession:=False oSession.OutOfOffice = True oSession.OutOfOfficeText = "I'm out of office, call to my cellphone." oSession.Logoff End Sub
Oskar Shon, Office System MVPPress
if Helpful
- Marked as answer by Tony Chen CHN Sunday, January 15, 2012 3:28 PM
Friday, January 6, 2012 3:15 PM -
I think outlook 2010 has a functionality where in you can create your own distribution list. Its upto you, whether or not u need that DL to have the OOO emails
Prateek Dixit Windows Vista Desktop Administrator. Microsoft Certified Technology Specialist www.thetechnoclub.com www.seoexceed.com- Proposed as answer by Prateekttc Friday, January 6, 2012 5:44 PM
- Marked as answer by Tony Chen CHN Sunday, January 15, 2012 3:28 PM
Friday, January 6, 2012 5:44 PM -