Tente isso
For Each oAccount In Application.Session.Accounts
Debug.Print oAccount
If oAccount = "Whatever you see in the immediate pane" Then
Set oMail = Application.CreateItem(olMailItem)
oMail.SendUsingAccount = oAccount
oMail.Display
End If
Next