How to disable digital signatures in VB creating outlook email

  • Thread starter Thread starter Ed at Navy
  • Start date Start date
E

Ed at Navy

I can manually turn off the digital signature but I want to turn it off
within VBA code. I am sending an automatic email within the application and
the digital signature is stopping me.

What can I do?
 
Parse the Body or HTMLBody of the item and remove the signature in code. The
registry setting for signatures is read only on startup and then cached, so
changing the registry setting while Outlook is running won't work.
 
Back
Top