H
Help Me
I am trying to have infopath send the form via e-mail
I have the following code working:
var oEnvelope = XDocument.View.Window.MailEnvelope;
oEnvelope.To = rgRecipients.join("; ");
oEnvelope.Subject = getNodeValue(xmlTitle);
oEnvelope.Visible = true
But this just changes the view to an outlook e-mail view. I actually want
it to send the e-mail. i tried oEnvelop.Send but it didn't work. Does
anyone know the code?
Thanks
I have the following code working:
var oEnvelope = XDocument.View.Window.MailEnvelope;
oEnvelope.To = rgRecipients.join("; ");
oEnvelope.Subject = getNodeValue(xmlTitle);
oEnvelope.Visible = true
But this just changes the view to an outlook e-mail view. I actually want
it to send the e-mail. i tried oEnvelop.Send but it didn't work. Does
anyone know the code?
Thanks