Hi,
I have a simple need to just capture the data entered in an InfoPath form (5
text boxes) and mail it in a simple Outlook 2003 email. Instead of sending
an attachment as InfoPath seems to do it, I need to have that text captured
in the form and place it as text on an email. Does anyone have some
directions or information on how to do it?
Thanks!
José
Franck Dauché - 21 Nov 2005 04:50 GMT
Hi,
You can use the email adapter:
var oEmail = XDocument.DataAdapters("Email Connection name");
oEmail.To = "To address";
oEmail.Subject = "subject";
oEmail.Intro = "XDocument.Dom.xml; <---- Form as email body
Regards,
Franck Dauché
> Hi,
>
[quoted text clipped - 6 lines]
> Thanks!
> José