View Single Post
  #4  
Old July 13th 06, 02:48 PM posted to microsoft.public.outlook.program_vba
RJH
external usenet poster
 
Posts: 2
Default New email button

I use a simple 'SendKeys' Macro to accomplish this.

Sub Mail2Person()
'sends Ctrl + N to create new mail window.
SendKeys "^" + "n"
'Assuming you are in the TO: field inputs the address.
SendKeys "
'Enter
SendKeys "~"
'Tab twice to ge tto the Subject field.
SendKeys "{TAB 2}"
End Sub


It's a simple macro that has worked for me, all I do is assign a button on
the toolbar and I'm set.

"Stuart Duncan" wrote:

Hi,

I regularly have to send emails to a couple of recipients and find locating
them in the address book tedious.

Can anyone tell me how to put a button on a toolbat that will create a new
mail message with the recipients name already there?

Thanks

Stusrt



Ads