sure...
General Declarations
Dim outApp As Outlook.Application
Dim outMessage As Outlook.MailItem
Private Sub cmdSend_Click()
On Error GoTo Err_cmdSend_Click
'create outlook instance
Set outApp = CreateObject("Outlook.application"

Set outMessage = outApp.CreateItem(olMailItem)
'assign the message variables
With outMessage
.BCC = strBCC
.Subject = "MySubject" & Me.NewsLetterDate.Value
.Body = Me.FormItem.Value 'or create strBody with all the details from the form that you want to send...
End With
'send the message
outMessage.Send
DoCmd.Close
Exit_cmdSend_Click:
Exit Sub
Err_cmdSend_Click:
MsgBox Err.Description
Resume Exit_cmdSend_Click
End Sub
hth
Bastien
There are many ways to skin this cat,
but it still tastes like chicken