Quote Originally Posted by gmaradiaga View Post
I am also trying to set up a user-completed form that would be emailed back to me, and am not receiving the data back, just the blank form. I am using the code provided above:

Dim olApp As Object
Dim olMsg As Object
Set olApp = CreateObject("Outlook.Application")
Set olMsg = olApp.CreateItem(0)
With olMsg .To = "email add"
.Subject = "subject"
.Body = "body"
.Attachments.Add Me.Path + "\" + Me.Name
.Send
End With

Set olMsg = Nothing
Set olApp = Nothing

Any suggestions?
Hi,

I'm not sure if this will give some advice or not?

http://www.vbforums.com/showthread.php?t=557488