I am looking for assistance in a macro for reply all in Outlook 2013. Our company has disabled the reply all function as a deterrent for reply all errors, but my position requires that I communicate with many individuals several times a day and it is very inefficient and several individuals are accidentally omitted from communications.
I had previously used the following in 2010 with no issue, but it doesn't seem to work in 2013. Any suggestions or alternates would be greatly appreciated.
Public Sub ReallyReplyAll()
Dim o As MailItem
Set o = Application.ActiveExplorer.Selection.Item(1)
o.ReplyAll.Display
End Sub
I had previously used the following in 2010 with no issue, but it doesn't seem to work in 2013. Any suggestions or alternates would be greatly appreciated.
Public Sub ReallyReplyAll()
Dim o As MailItem
Set o = Application.ActiveExplorer.Selection.Item(1)
o.ReplyAll.Display
End Sub