C# mail question

A

Alex Irazabal

I am trying to send an email from code using a data adapter. However I don't
know how to invoke the submit function in my code. Here is what I've tried...
1) e.XDocument.DataAdapters["MailSubmit"].submit(); // no good compile error
2) DataAdapter da = e.XDocument.DataAdapters["MailSubmit"];
da.Submit(); // compile error (DataAdapter not found)

Anyone done this???
 
Top