What you need to do is view the code on the form, (create a command button first to allow email). What you need to use is the Send Object command. Below is an example of one that I have used:
DoCmd.SendObject , , , , , , "Response Time: " & Me.[Response By Time], vbCrLf & "CBUK Number: " & Me.CBUK_Numberfld & vbCrLf & vbCrLf & "Contact Name: " & Me.[Contact Name] & vbCrLf & "Contact Number: " & Me.ContactNumberfld & vbCrLf & "Location: " & Me.Location & vbCrLf & "Region: " & Me.Region & vbCrLf & vbCrLf & "FTIP: " & Me.FTIP & vbCrLf & "NCIF: " & Me.NCIF & vbCrLf & "FXOD/FXOS: " & Me.Text58 & vbCrLf & "VCI: " & Me.VCI & vbCrLf & "VPI: " & Me.VPI & vbCrLf & vbCrLf & "Connection Speed; " & Me.Speed & vbCrLf & "Interface: " & Me.Interface & vbCrLf & vbCrLf & "Problem Description: " & Me.[Problem Description] & vbCrLf & vbCrLf & "UserID: " & Me.AddedByUser, False, False
This is a pretty long string, but alot of info needs to be added.
If you need any more info, drop me a mail.
Hope this helps !