Link to home
Start Free TrialLog in
Avatar of rwheeler23
rwheeler23Flag for United States of America

asked on

Outlook 2010 Default Signature

I just upgraded to Outlook 2010 64 bit and was immediately dismayed by having trouble settng up default accounts with which to create and reply to messages. I did find some macros that I have added. The problem now is the signatures. Even though it has the right account the signatures it is using are wrong. If I choose account A I want the signature associated with account A and so on and so on. What it is doing is giving me the signature that is associated with the pst file. I have included the code I used for accounts. Is there a way to add to it the ability to grab the correct signature?
Public Sub New_Mail()
Dim oAccount As Outlook.Account
Dim oMail As Outlook.MailItem
For Each oAccount In Application.Session.Accounts
If oAccount = "myemail@myemailserver.com" Then
Set oMail = Application.CreateItem(olMailItem)
oMail.SendUsingAccount = oAccount
oMail.Display
End If
Next
End Sub

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of David Lee
David Lee
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of rwheeler23

ASKER

I only have two accounts and one is the most dominant. I simply changed both accunts to use the same signature.The way this works in Outlook 2010 seems to be a step backwards. Do you see any advantage to using 64 bit Office over 32 bit office? I have a few add-ons that work only with 32 bit and I am thinking of downgrading back to 32 bit.
That is the simplest solution.

No, I don't see any benefit.  In fact on my 64-bit computer I use 32-bit Office.