PdcExtensionMail.AddSignature: Difference between revisions

From External Bemet Wiki
Jump to navigation Jump to search
Created page with "== Declaration == AddSignatureas Boolean == Description == Returns or changes the AddSignature flag == Notes == If this property is true, the signature of the user is autom..."
 
No edit summary
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
== Declaration ==
== Declaration ==
AddSignatureas Boolean
AddSignature as Boolean


== Description ==
== Description ==
Line 6: Line 6:


== Notes ==
== Notes ==
If this property is true, the signature of the user is automatically added to the generated email.
If this property is true, the signature of the user is automatically added to the generated email. This property is true by default.


== Code example ==
== Code example ==
Line 12: Line 12:


<source lang="vb">
<source lang="vb">
Dim aEmail As PDCEXT.IExtensionMail = PDC.App.ExtensionMail
Dim aEmail As PDCEXT.IExtensionMail = PDC.App.ExtensionMail
aEmail.AddSignature = cbAddSignature.Checked
aEmail.AddSignature = cbAddSignature.Checked
aEmail.ShowMailInClient()
aEmail.ShowMailInClient()
End Sub
 
</source>
</source>


== Availability ==
== Availability ==
Available since April 2023(From version 2023.2.1.0)
Available since April 2023(From version 2023.2.1.0)

Latest revision as of 13:13, 23 March 2023

Declaration

AddSignature as Boolean

Description

Returns or changes the AddSignature flag

Notes

If this property is true, the signature of the user is automatically added to the generated email. This property is true by default.

Code example

This code example creates an empty email, sets the AddSignature flag, and shows the resulting email in a client.

Dim aEmail As PDCEXT.IExtensionMail = PDC.App.ExtensionMail
aEmail.AddSignature = cbAddSignature.Checked
aEmail.ShowMailInClient()

Availability

Available since April 2023(From version 2023.2.1.0)