首页 > 解决方案 > Outlook 2016 macro to edit received email

问题描述

I would like to be able to add notes to received emails so that I can keep track of work I've done or need to do. We just switched from Lotus Notes to Office365 and after doing some research I've figured out how to edit a received email. You have to open the email then go to Actions --> Edit Message.

Those aren't too many steps but a keyboard shortcut or button would make it much faster.

I did some research and learned a bit about Macros. I don't know how to write VB and was wondering if anyone could give me a hand writing it.

These are the steps I would need:

  1. Open the currently selected email
  2. Make it editable

As a bonus I would like change the font color to red. It just delineates text I've added versus the original email.

Thanks, any help would be appreciated.

标签: vbaoutlook

解决方案


谢谢@victor,你的评论把我带到了正确的地方。

这是我使用的,以防其他人想知道:

Sub OpenForEditing()
    ActiveExplorer.Selection(1).Display
    ActiveInspector.CommandBars.ExecuteMso "EditMessage"
End Sub

推荐阅读