Outlook Messages

A

allan

This is great advice...but being a novice...how do i do
this?

My preference is to store the email address in a text
field and generate the new
message, with a command button or double-click of the text box, using:

'***
'Make sure "Email" contains minimum length for a valid address
If Len(Trim(Me.Email.Value) & vbNullString) > 5 Then
Application.FollowHyperlink "mailto:" & Me.Email.Value
End If
'***

Where "Email" is the name of the text box bound to
the "Email" field
 
Top