 | IMailSaveHtmlAs(String, Boolean) Method |
Saves HTML version of the message as regular HTML file.
When inlineVisuals is set to true: all visual elements are inlined using data: URI scheme, instead of being saved to disk.
If the message is plain text only, this method uses
GetBodyAsHtml to create HTML from plain text.
Namespace: Limilabs.MailAssembly: Mail (in Mail.dll) Version: 3.0.26106.1555
Syntaxvoid SaveHtmlAs(
string fileName,
bool inlineVisuals
)
Sub SaveHtmlAs (
fileName As String,
inlineVisuals As Boolean
)
void SaveHtmlAs(
String^ fileName,
bool inlineVisuals
)
abstract SaveHtmlAs :
fileName : string *
inlineVisuals : bool -> unit Parameters
- fileName String
- Name of the resulting HTML file (e.g. "c:\\example\\email.html").
- inlineVisuals Boolean
- Specifies if visuals should be inlined using data: URI scheme, or saved to disk.
See Also