[Outlook VBA]リボンをクリックして返信先の指定(Reply-To:)を設定する
1705 ワード
備忘メモ:Outlook VBAを使って返信先の指定(Reply-To:)を設定
説明
Outlookのメッセージ編集画面で「返信先の指定」(Reply-To:)を設定する際の、オプション
>返信先>返信先の指定にアドレス入力、の一連の操作が煩わしいので、リボン用のマクロを作成し、自動設定できるようにする。
動作確認環境
Microsoft® Outlook® 2016 MSO (16.0.13929.20206) 32 ビット
コード
Sub Set_Replyto()
'登録されている返信先をいったんすべて削除
Do While ActiveInspector.CurrentItem.ReplyRecipients.Count > 0
ActiveInspector.CurrentItem.ReplyRecipients.Remove 1
Loop
'返信先アドレスを追加
ActiveInspector.CurrentItem.ReplyRecipients.Add ("[email protected]")
End Sub
Author And Source
この問題について([Outlook VBA]リボンをクリックして返信先の指定(Reply-To:)を設定する), 我々は、より多くの情報をここで見つけました https://qiita.com/ktorkto/items/5c0e2dc9495c53a20f9b著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .