PdcExtensionMail.Body: Difference between revisions

From External Bemet Wiki
Jump to navigation Jump to search
Created page with "== Declaration == Bodyas String == Description == Returns or changes the Body to be added to the generated email. == Notes == This property should contain a string with the..."
 
No edit summary
 
Line 1: Line 1:
== Declaration ==
== Declaration ==
Bodyas String
Body as String


== Description ==
== Description ==

Latest revision as of 13:07, 23 March 2023

Declaration

Body as String

Description

Returns or changes the Body to be added to the generated email.

Notes

This property should contain a string with the text of the email.

Code example

This code example creates an empty email, adds a single line of text to the body, and shows the resulting email in a client.

Dim aEmail As PDCEXT.IExtensionMail = PDC.App.ExtensionMail
aEmail.ForceMSGraph = True

aEmail.Body= "Contents of the email"

aEmail.ShowMailInClient()

Availability

Available since April 2023(From version 2023.2.1.0)