![]() |
If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. |
|
|
Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
![]()
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 |
#2
|
|||
|
|||
![]()
Am Sun, 21 May 2006 11:41:54 GMT schrieb Stuart Duncan:
Stuart, you can create a template with that addresses and store it e.g. in the drafts folder. If that e-mail has an unique subject you can call it easily with: Public Sub DisplayTemplate() Application.Session.GetDefaultFolder(olFolderDraft s) _ .Items("YourTemplate").Display End Sub Right click on the toolbar, select Customize/Commands/Macros/Macro Name and drag that name onto the toolbar. -- Viele Gruesse / Best regards Michael Bauer - MVP Outlook -- www.vbOffice.net -- 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 |
#3
|
|||
|
|||
![]()
See the topic "Add a custom address list to your Outlook toolbar". You fill
out the addressee and you can optionally fill out the subject. (Not applicable to my version of Outlook 2000 at home but I use it at work.) Tips and tricks for Outlook 2000 http://office.microsoft.com/en-ca/a...0552291033.aspx The second site describes how to create a template (.oft) file. It is a bit more flexible, you need not fill in the addressee. Rather than linking to the email address as described above, link to the File in your Template folder. In addition to addressee and subject you can fill out some/all of the body of the email. You can put these on a menu or toolbar button as well. OL2000: How to Create an E-mail Message Template or an E-mail Message Form http://support.microsoft.com/?kbid=258256 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 -- Message posted via OfficeKB.com http://www.officekb.com/Uwe/Forums.a...g-vba/200605/1 |
#4
|
|||
|
|||
![]()
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 |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Delete Excel Command Button Before Email is Sent | White Horse | Outlook and VBA | 1 | April 28th 06 06:01 AM |
Embed button in email | meendar | Outlook - General Queries | 1 | April 11th 06 10:43 PM |
O2003- how to show email account info? (esp. via email hyperlink on a button) | StargateFan | Outlook - General Queries | 2 | March 22nd 06 12:35 PM |
My email accounts button is missing. | GirlzRool | Outlook - General Queries | 2 | March 4th 06 11:29 PM |
Net Folders Email Button | Abe Froman | Outlook - Calandaring | 0 | March 1st 06 05:32 PM |