The following code opens a blank email form when a user double clicks on an email address. It should be a good start toward what you want. Apply the code to the ON Close event for the form used to enter the Order. You will need to supply at least the email address, message subject and a message to the customer regarding the order.
Look up the command DoCmd.SendObject for more information about what the parameters are and how to use them.
NOTE IN ADVANCE: The last parameter controls whether the form appears for modification or whether it is sent automatically. If it is TRUE, the command displays an email form, and if it is FALSE, it sends the email.
------------------------------------------------------------------------
Private Sub Email_DblClick(Cancel As Integer)
On Error GoTo Err_Email_DblClick
Dim stDocName As String
Dim stDocSubj As String
If Me.email <> "" Then
stDocName = "Email"
stDocSubj = "Email Being Sent to " & Me.Expr1
' DoCmd.SendObject acSendNoObject, stDocName, acFormatXLS, Me.email, , , "Test Email", , True
DoCmd.SendObject acSendNoObject, stDocName, acFormatXLS, Me.email, , , stDocSubj, , True
End If
Exit_Email_DblClick:
Exit Sub
Err_Email_DblClick:
MsgBox Err.Description
Resume Exit_Email_DblClick
End Sub
------------------------------------------------------------------------