Ok, I figured it out, I used:
DoCmd.SendObject , , acFormatRTF, Me.Email, Me.Cc, , Me.Subject, Me.Message,
False, False
BUT, in another form I wanted to email the form as well, and when I changed
it to:
DoCmd.SendObject acSendForm, acFormatRTF, Me.Email, Me.Cc, , Me.Subject,
Me.Message, False, False
it gives the error, "Run-time error 2498. An expression you entered is the
wrong data type for one of the arguments".
Now even my first initial code is not working and before the email worked
fine! HELP!