Hi,
See "Issue Tracking" sample form. In form's script see createEmail function
...
var oEnvelope = XDocument.View.Window.MailEnvelope;
oEnvelope.To = rgRecipients.join("; ");
oEnvelope.Subject = getNodeValue(xmlTitle);
oEnvelope.Visible = true;
This will allow you send (NOT submit) email with mhtml in the body.
Cheers.
> I have configured a button in my XML InfoPath form to send an email, however
> I need to send the email as a web page (MHTML doc). Tried several
> configurations and have not been successful. Help please….
>
> Thanks.