Skip to content

Display


Overview

The Display method opens a preview pane to display the mail item, allowing the user to preview the email before sending.

Syntax

vba
MailItem.Display

Example

Example code snippet demonstrating how to use the Display method:

vba
' Create a new mail item
Dim MailerApp As New nlsMailer.Application
Dim mailItem As MailItem
Dim account As Account
Set account = MailerApp.Accounts.Add("John Doe", "john@example.com", , , olMailgun)
Set mailItem = MailerApp.CreateItem(olMailItem)

' Set mail item properties
mailItem.Subject = "Test Email"
mailItem.Body = "This is a test email."
mailItem.Recipients.Add "recipient@example.com"

' Display the mail item preview
mailItem.Display