A Microsoft Outlook email forum. Outlook Banter

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.

Go Back   Home » Outlook Banter forum » Microsoft Outlook Email Newsgroups » Outlook and VBA
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

New email button



 
 
Thread Tools Search this Thread Display Modes
  #1  
Old May 21st 06, 12:41 PM posted to microsoft.public.outlook.program_vba
Stuart Duncan
external usenet poster
 
Posts: 1
Default New email button

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  
Old May 22nd 06, 05:29 AM posted to microsoft.public.outlook.program_vba
Michael Bauer
external usenet poster
 
Posts: 435
Default New email button

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  
Old May 30th 06, 04:06 AM posted to microsoft.public.outlook.program_vba
skatonni via OfficeKB.com
external usenet poster
 
Posts: 4
Default New email button

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  
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



 




Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
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


All times are GMT +1. The time now is 05:51 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.Search Engine Friendly URLs by vBSEO 2.4.0
Copyright ©2004-2025 Outlook Banter.
The comments are property of their posters.