What's the actual problem here? Is it that the recipient doesn't have Outlook and so you must send the data as plain text? Or is it that you don't know why the recipient, who does have Outlook, can't see your fields? See
http://www.outlookcode.com/d/sendform.htm
In any case, you cannot send the **form** as plain text, but you can send the information. Put code in the Item_Send event handler to create a new message, set its BodyFormat property, then build its Body from the fields in your custom form. Address and send it and then cancel the original send by setting Item_Send = False.
--
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003
http://www.turtleflock.com/olconfig/index.htm
and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
http://www.outlookcode.com/jumpstart.aspx
"Obscurr" wrote in message ...
Hi!
I'd like to send a custom form as plain text. Is that possible? I'm not
getting the data in the fields I have created on the receiving side.
O.