Hi estrassm
The easiest way is to use DoCmd.SendObject.
Create a command button on your form. In the on click event select "Event Procedure". Click the build button and type in the command. The syntax is as follows:
DoCmd.SendObject acSendForm, Me.NAME, acFormatRTF, "The target e-mail address here.", , , "Subject line here.", "Messsage text here", True
Muel87114