Converter.ConvertToHtml
Converter.ConvertToHtml method
Converts an email message to HTML format.
public static Task ConvertToHtml(Stream input, string nameWithExtension, IOutputHandler handler)
Parameter | Type | Description |
---|---|---|
input | Stream | The email input stream. |
nameWithExtension | String | Original file name. |
handler | IOutputHandler | Output handler that will receive the .html file. |
Return Value
A completed task.
Examples
using var input = File.OpenRead("mail.msg");
var handler = new FolderOutputHandler("C:\\Out");
await Converter.ConvertToHtml(input, "mail.msg", handler);
See Also
- interface IOutputHandler
- class Converter
- namespace Aspose.Email.LowCode
- assembly Aspose.Email