Quote Originally Posted by mark007
How can you create a signature and stationary item through vba? Had a quick look through the object model and couldn't see anything that looked appropriate...
Hi Mark,

My 2 cents, why not:

  • Have the users create there own signatures via the normal way in Outlook.
  • Add a custom button to show a custom form with a combo or listbox to choose the signature they want.
  • The combo reads the Signature file names from: "C:\Documents and Settings\USERNAME\Application Data\Microsoft\Signatures
After they make a choise you can:
  • Read that signature with FSO.OpenTextFile and use the GetUserName API to find the correct path of the file
  • Than put that in the HTMLBody like Dennis showed yah.
Wouldn't that work?

HTH,