Pass the data as a string in the body of the email:
Dim objOutlook As Outlook.Application
Dim objEmail As Outlook.MailItem
Set objOutlook = CreateObject("Outlook.application")
Set objEmail = objOutlook.CreateItem(olMailItem)
Dim strTo as String
Dim strSubject As String
Dim strBody As String
strTo = Me.txtEmail
strSubject = "This is a sample"
strBody = "Name " & Me.txtName & vbCrLf & _
"Address " & Me.txtAddress & vbCrLf & _
"More data, etc. " & Me.txtWhatever
With objEmail
.To = strTo
.Subject = strSubject
.body = strBody
--
Arvin Meyer, MCP, MVP
http://www.datastrat.com
http://www.mvps.org/access
http://www.accessmvp.com
OK. With help, I was able to get access to send an HTML email. Now I
just
need to get the record to be passed. I know this is probably VERY
simply
but I lost
Thx