Hi Alan,
You will need to change your "submit" functionality to use custom code and
then in the OnSubmitRequest event handler you can use code similar to the
following:
Dim objBodyText
Set objBodyText =
XDocument.DOM.selectSingleNode("//my:myFields/my:txtBodyText")
XDocument.UI.ShowMailItem "(e-mail address removed)", "", "", "Subject: Test",
objBodyText.text
eventObj.ReturnStatus = true
** NOTE: In this sample, I have a text box on my form and the data that is
in that text box is the text that appears in the body of the mail.
Keep in mind, this method will only send your form as an attachment not as
part of the body.
I hope this helps!
Scott L. Heim
Microsoft Developer Support
This posting is provided "AS IS" with no warranties, and confers no rights.