HTMLBody
Overview
The HTMLBody
property of a mail item represents the HTML-formatted content of the email message.
Syntax
Return Value
A String
containing the complete HTML content of the email message. Returns an empty string if no HTML content is set.
Example
This example demonstrates how to create a mail item and work with HTML body content:
vba
Sub HTMLBodyExample()
Dim app As New nlsMailer.Application
Dim mailItem As Object
' Create a new mail item using the Application object
Set mailItem = app.CreateItem(olMailItem)
' Set HTML body content
mailItem.HTMLBody = "<html>" & _
"<body>" & _
"<h1>Welcome to Our Newsletter</h1>" & _
"<p>Dear Subscriber,</p>" & _
"<p>This is a <strong>formatted</strong> HTML email with <em>rich</em> content.</p>" & _
"<table border='1'>" & _
"<tr><td>Column 1</td><td>Column 2</td></tr>" & _
"</table>" & _
"<a href='https://example.com'>Visit Our Website</a>" & _
"</body>" & _
"</html>"
' Retrieve HTML content
Dim htmlContent As String
htmlContent = mailItem.HTMLBody
End Sub