-->

How to insert signature in Outlook Email through VBA macro

This is article about how to insert signature part into the outlook at once you created a new email through macro.

if you are working in a firm or somewhere else and you like to automate email creation part through the VBA macro you will face some kind of issue like your signature will be gone at once macro return body of the mail.

To solve the issue, on your macro code you are able to see ".Display" (it is a code which used to display email in front of the user instead of sending it automatically through macro).

Add the below code after ".Display" command. Which let you enable your signature automatically post your body of the mail.

'(After “.Display” comment)

SendKeys "{Tab}^+{End}{End}", True

Application.SendKeys ("%NAS~")
Application.Wait (Now + TimeValue("0:00:02"))

Thanks for coming☺️

How to insert signature in Outlook Email through VBA macro