PdcExtensionMail.Recipients

From External Bemet Wiki
Revision as of 13:03, 23 March 2023 by TC (talk | contribs) (Created page with "== Declaration == Recipients as IStrings == Description == Returns or changes the list of Recipients to be added to the generated email. == Notes == This property should con...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Declaration

Recipients as IStrings

Description

Returns or changes the list of Recipients to be added to the generated email.

Notes

This property should contain a list of email addresses of the recipients of the email.

Code example

This code example creates an empty email, adds 2 recipients, and shows the resulting email in a client.

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

Dim recipients As IStrings = PDC.App.GetEmptyStringsList
recipients .Add("[email protected]")
recipients .Add("[email protected]")
aEmail.Recipients = recipients 

aEmail.ShowMailInClient()

Availability

Available since April 2023(From version 2023.2.1.0)