Signature

G

Guest

I am trying to create a signature to go in all of my emails. I used the outlook help, but the "signature picker" button is not able, so I can't do it. Is there some way I can enable the signature picker?
 
G

Guest

Did you get an answert to his question? I am having the same problem EXACTLY. Please help if you can. Thanks

(e-mail address removed)

----- C. Johnson wrote: ----

I am trying to create a signature to go in all of my emails. I used the outlook help, but the "signature picker" button is not able, so I can't do it. Is there some way I can enable the signature picker?
 
R

Robert Findlay [MSFT]

If you are using Word as your e-mail editor then the signature picker in
Outlook will be greyed out. You will need to use the following steps to
create a signature in Word.
1. Open Outlook.
2. Open a new e-mail message.
3. Go to Tools -> Options.
4. On the General tab click the E-mail Options button on the bottom left.
5. Type in a name for the signature then setup the signature in the bottom
window.
This should do what you are trying accomplish.

I hope this information is helpful.

Robert Findlay
Partner Technical Lead -- BizApps
Microsoft Technical Support for Platforms and Business Applications
 
S

Sue Mosher [MVP-Outlook]

Note that these are the instructions for Office 2000, not later versions.
 
R

Robert Findlay [MSFT]

Actually this will work with Outlook 2003 which is where I was looking when
I typed up the instructions and I believe it is the same in Outlook 2000
and XP.

Robert Findlay
Partner Technical Lead -- BizApps
Microsoft Technical Support for Platforms and Business Applications
 
S

Sue Mosher [MVP-Outlook]

Cool! I hadn't notices that General | E-mail in Word 2003 picks up the same
info as Outlook's Tools | Options | Mail Format dialog.

In any case, it might be worth noting that there is a great deal of
different in where the signatures are stored. Outlook 2000 stores the
WordMail signature as an AutoText entry. In Outlook 2002 and 2003, both
editors use the same signatures, which are stored as separate files.
 
Joined
Jun 22, 2007
Messages
3
Reaction score
1
Trying to get VBscript to insert a signature across all verison of Outlook

Sue and/or anyone,
I have a script that I want to use to install a signature into All versions of Outlook. It works great in 2000. But not in 20020 or 2003. Can you help me configure this script to install a sig for all Outlook clients even if we have a mixed env. of 2000, 2002, and 2003????

Here is the script I have:

On Error Resume Next

strName = InputBox("Please Provide Your Name, First Name then Last")

strTitle = InputBox("Please Provide Your Job Title")

strCompany = InputBox("Please Provide Your Company")

strPhone = InputBox("Please Provide Your Full Phone Number in This Format (804)274-1200")

strMail = InputBox("Please Provide Your e-Mail Address")

strWeb = "http://www.callfcu.org"

Set objWord = CreateObject("Word.Application")

Set objDoc = objWord.Documents.Add()

Set objSelection = objWord.Selection

Set objEmailOptions = objWord.EmailOptions

Set objSignatureObject = objEmailOptions.EmailSignature

Set objSignatureEntries = objSignatureObject.EmailSignatureEntries

objSelection.TypeText strName & ", " & strTitle

objSelection.TypeParagraph()

objSelection.TypeText strCompany

objSelection.TypeParagraph()

objSelection.TypeText strPhone

objSelection.TypeParagraph()

objSelection.TypeText strMail

objSelection.TypeParagraph()

objSelection.TypeText strWeb

Set objSelection = objDoc.Range()

objSignatureEntries.Add "MyDefaultSig", objSelection

objSignatureObject.NewMessageSignature = "MyDefaultSig"

objSignatureObject.ReplyMessageSignature = "MyDefaultSig"

objDoc.Saved = True

objWord.Quit




Thanks a million for any and all help!!!!!!!!!!!!!
JL
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top