Send Email From Textbox

crow

Registered User.
Local time
Today, 19:31
Joined
Jan 10, 2005
Messages
22
I have a form that has a textbox that equals an email address. Does anyone know how to send an email just by clicking on the textbox to activate your email client? Help would be much appreciated.
 
SendObject

Add the following line to the OnClick procedure:

DoCmd.SendObject acSendNoObject, , , Me.txt_email, , , "Email Subject"

Substitute the txt_email with the name of the text box.
 
Link to email in Textbox

Thanks fernin8r: Works great!
 

Users who are viewing this thread

Back
Top Bottom