Above is my code... I use the .Display option to make the outlook email visible.
Seems the options of Docmd.sendobject might be indeed, sending the object.. Is createobject an option? Either way take a look above I hope it helps.
Code:
Sub CreateHTMLMail() ''''Creates a new e-mail item and modifies its properties'
Dim olApp As Outlook.Application
Dim objMail As Outlook.MailItem
Set olApp = Outlook.Application 'Create e-mail item'
Set objMail = olApp.CreateItem(olMailItem)
''' Assigning things in the outlook mail message. ' This example will populate the email based on form txtboxes.
With objMail
.Subject = Forms("Formname").txtboxname
.Body = Forms("Formname").txtboxname
.To = Forms("Formname").txtboxname
.Display
.ReadReceiptRequested = True 'IF you want to enforce a read receipt, keep this part, if not just comment or remove it End With End Sub