I have an application that creates a message signature and deploys it to Outlook. How can I set it to be the default for a new/reply-forward message? I found out some solutions as below:
- Using Microsoft.Office.Word.Interop object:
wordObj.EmailOptions.EmailSignature.NewMessageSignature
But it initializes an Outlook object too, so I don't want it.
- Setting a value in the registry as described here
But in some machines, I am not able to find this registry key.
Has anyone found a stable solution for this problem? Any help would be appreciated so much.