For a list of all members of this type, see MailJob members.
| Name | Description |
| AdditionalOptions | Allows to define some additional mail options e.g. for sending via SMTP or GRPAH.
These options can be found in the Programmer's Reference for "Export.Mail..." (see also Setting Mail Parameters by Code). |
| AttachmentList | ArrayList of files to attach. Add the paths of the files to attach to the list. |
| BCC | This address will receive a blind carbon copy. Multiple recipients can be separated by semicolons. |
| Body | Mail body text. |
| BodyHtml | Mail body text (HTML). |
| BodyRtf | Mail body text (RTF). |
| CC | This address will receive a carbon copy. Multiple recipients can be separated by semicolons. |
| ErrorText | |
| From | Sender of the email. |
| Provider | This option can be used to switch the mail provider. All options besides MSMAPI need the mail module (cmmx??.dll (32-bit) or cxmx??.dll (64-bit)).
Value |
Meaning |
SMAPI |
Simple MAPI |
XMAPI |
Extended MAPI |
MSMAPI |
System MAPI (using the default MAPI client) |
SMTP |
Sending mail via SMTP (see AdditionalOptions for connection data) |
GRAPH |
Microsoft Graph API e.g. for the Office 365 Cloud (for connection data see AdditionalOptions)
For using the GRAPH provider additional files are needed:
- combit.ListLabelXX.GraphMailExtension.dll
- combit.ListLabelXX.MailExtensions_x86.dll or combit.ListLabelXX.MailExtensions_x64.dll
- The content of the associated Microsoft.Graph subfolder
|
Default |
The default value depends on the system's or application's settings (see below) |
If the DLL can not be found, the mail will be sent using system MAPI (MSMAPI). The provider is selected by either setting it explicitly using this option or letting the user choose in the LsMailConfigurationDialog(). List & Label tries first to retrieve the application specific mail settings from the registry. If those can not be found, the global mail settings will be applied. These can be set using LsMailConfigurationDialog(). |
| ShowDialog | Chooses to send the mail without any further user interaction.
Value |
Meaning |
false |
The mail is sent directly without any further user interaction (at least 1 TO recipient must be given)
|
true |
The standard "Send mail" dialog is displayed. The values passed are preset there.
|
|
| SignatureName | The name of an Outlook signature or the path and file name (without file name extension!) of a signature file. Depending on body text type, the file name extension txt, rtf or htm will be appended. |
| Subject | email subject. |
| To | Recipient address. Multiple recipients can be separated by semicolons. |
| UseMapiNameResolving | |
Top