Render email messages as HTML, PDF, PNG, and JPEG files
Leave feedback
On this page
GroupDocs.Viewer for Python via .NET allows you to render your email messages in HTML, PDF, PNG, and JPEG formats. You do not need to use third-party email clients to view the contents of email files within your .NET application (web or desktop).
To start with the GroupDocs.Viewer API, create a Viewer class instance. Pass an email message you want to view to the class constructor. You can load the message from a file or stream. Call one of the Viewer.view method overloads to convert the loaded message to HTML, PDF, or image format. These methods allow you to render the entire message or specific pages.
GroupDocs.Viewer can detect the email file format automatically based on information in the file header.
Render email messages as HTML
Create an HtmlViewOptions class instance and pass it to the Viewer.view method to convert an email message to HTML. The HtmlViewOptions class properties allow you to control the conversion process. For instance, you can embed all external resources in the generated HTML file, minify the output file, and exclude specific fonts. Refer to the following documentation section for details: Rendering to HTML.
withgv.Viewer("sample.eml")asviewer:# Create an HTML file.viewOptions=gvo.HtmlViewOptions.for_embedded_resources("output.html")viewer.view(viewOptions)
The path format for the folder with external resources
The resource URL format
withgv.Viewer("sample.eml")asviewer:# Specify the HTML file name and location of external resources.# {0} is replaced with the resource name in the output file name.viewOptions=gvo.HtmlViewOptions.for_external_resources("output.html","output/resource_{0}","output/resource_{0}")viewer.view(viewOptions)
The result is shown below. External resources are placed in a separate folder.
Render email messages as PDF
Create a PdfViewOptions class instance and pass it to the Viewer.view method to convert an email message to PDF. The PdfViewOptions class properties allow you to control the conversion process. For instance, you can protect the output PDF file, reorder its pages, and specify the quality of document images. Refer to the following documentation section for details: Rendering to PDF.
withgv.Viewer("sample.eml")asviewer:# Create a PDF file.viewOptions=gvo.PdfViewOptions("output.pdf")viewer.view(viewOptions)
withgv.Viewer("sample.eml")asviewer:# Create a PNG file.viewOptions=gvo.PngViewOptions("output.png")# Set width and height.viewOptions.width=800viewOptions.height=1000viewer.view(viewOptions)
withgv.Viewer("sample.eml")asviewer:# Create a JPG file.viewOptions=gvo.JpgViewOptions("output.jpg")# Set width and height.viewOptions.width=800viewOptions.height=1000viewer.view(viewOptions)
Specify rendering options
GroupDocs.Viewer supports the EmailOptions class that allows you to specify different options for rendering email messages. To access these options, use the EmailOptions property for one of the following classes (depending on the output file format):
GroupDocs.Viewer allows you to specify page size for the output file when you convert an email message to HTML, PDF, or image format. Assign a PageSize enumeration member to the email_options.page_size property to select one of the predefined page sizes (Letter, Ledger, A0, A1, A2, A3, or A4).
The following example specifies page size for the output PDF file:
withgv.Viewer("sample.eml")asviewer:# Create a PDF file.viewOptions=gvo.PdfViewOptions("output.pdf")# Specify the page size.options.email_options.page_size=gvo.PageSize.Letterviewer.view(viewOptions)
Rename fields in the message header
GroupDocs.Viewer allows you to change how standard fields (such as From, To, Subject, and so on) are displayed in the email message header.
Use the EmailOptions.field_text_map property to specify custom field labels. Static fields of the Field class allow you to access default email header fields, as shown in the example below.
withgv.Viewer("sample.eml")asviewer:# Create an HTML file.viewOptions=gvo.HtmlViewOptions.for_embedded_resources("output.html")# Specify custom field labels.viewOptions.email_options.field_text_map[gvo.Field.FROM]="Sender"viewOptions.email_options.field_text_map[gvo.Field.TO]="Receiver"viewOptions.email_options.field_text_map[gvo.Field.SENT]="Date"viewOptions.email_options.field_text_map[gvo.Field.SUBJECT]="Topic"viewer.view(viewOptions)
The following image illustrates the result:
Specify the date and time format and change the time zone
When rendering email messages, GroupDocs.Viewer formats date and time information in the message header based on the system’s date and time settings. If you want to change the default date and time format or specify the time zone offset, use the following properties:
email_options.date_time_format—Allows you to define a custom date and time format. See the following topics for details:
email_options.time_zone_offset—Specifies the hours and minutes offset from UTC. The offset is displayed with a leading sign. A plus sign (+) indicates time ahead of UTC, and a minus sign (-) indicates time behind UTC.
withgv.Viewer("sample.eml")asviewer:# Create an HTML file.options=gvo.HtmlViewOptions.for_embedded_resources("output.html")# Apply a custom format to the date in the email message header.options.email_options.date_time_format="MM d yyyy HH:mm tt zzz"# Specify the time zone offset. options.email_options.time_zone_offset=timedelta(hours=1)viewer.view(options)
The following image illustrates the result:
Was this page helpful?
Any additional feedback you'd like to share with us?
Please tell us how we can improve this page.
Thank you for your feedback!
We value your opinion. Your feedback will help us improve our documentation.