Options
From PDF XChange PDF SDK
Line 22: | Line 22: | ||
| class="op_enum_value" | '''0''' (MailClient) || ... | | class="op_enum_value" | '''0''' (MailClient) || ... | ||
|- | |- | ||
− | | class="op_enum_value" | '''1''' (SMTP) || | + | | class="op_enum_value" | '''1''' (SMTP) || Send email through external SMTP server (need to set SMTP parameters). |
|- | |- | ||
− | | class="op_enum_value" | '''2''' (Local) || ... | + | | class="op_enum_value" | '''2''' (Local) || Save email in folder named in LocalFolder parameter. Body of letter will be saved in this folder as Message.txt file. Attached files will be copied into this folder too. |
|} | |} | ||
Default value: <tt>'''-1''' (Auto)</tt> | Default value: <tt>'''-1''' (Auto)</tt> | ||
Line 30: | Line 30: | ||
| class="op_param_name" | [[#SMTP|SMTP]] | | class="op_param_name" | [[#SMTP|SMTP]] | ||
| style="text-align:center" | Dictionary | | style="text-align:center" | Dictionary | ||
− | | Specifies | + | | Specifies parameters of SMTP server if '''Mode''' set <tt>'''1''' (SMTP)</tt>. |
|- | |- | ||
| class="op_param_name" | From | | class="op_param_name" | From | ||
Line 78: | Line 78: | ||
{| class="op_internal_table" | {| class="op_internal_table" | ||
|- | |- | ||
− | | class="op_enum_value" | '''0''' (Low) || Low priority | + | | class="op_enum_value" | '''0''' (Low) || Low priority. |
|- | |- | ||
− | | class="op_enum_value" | '''1''' (Normal) || Normal priority | + | | class="op_enum_value" | '''1''' (Normal) || Normal priority. |
|- | |- | ||
− | | class="op_enum_value" | '''2''' (High) || High priority | + | | class="op_enum_value" | '''2''' (High) || High priority. |
|} | |} | ||
Default value: <tt>'''1''' (Normal)</tt> | Default value: <tt>'''1''' (Normal)</tt> | ||
Line 92: | Line 92: | ||
{| class="op_internal_table" | {| class="op_internal_table" | ||
|- | |- | ||
− | | class="op_enum_value" | '''0''' (NoComress) || Without compressing | + | | class="op_enum_value" | '''0''' (NoComress) || Without compressing. |
|- | |- | ||
| class="op_enum_value" | '''1''' (CompressEach) || Each file will be compressed separately. as result you will have several attached files. | | class="op_enum_value" | '''1''' (CompressEach) || Each file will be compressed separately. as result you will have several attached files. | ||
Line 117: | Line 117: | ||
| class="op_param_name" id="OnePackName" | OnePackName | | class="op_param_name" id="OnePackName" | OnePackName | ||
| style="text-align:center" | String | | style="text-align:center" | String | ||
− | | Specifies a name which used for naming an attached archive file, if in [[#PackAttachmentsMode|'''PackAttachmentsMode''']] parameter set '''2''' (CompressAllToOne). | + | | Specifies a name which used for naming an attached archive file, if in [[#PackAttachmentsMode|'''PackAttachmentsMode''']] parameter set <tt>'''2''' (CompressAllToOne)</tt>. |
Default value: <tt>'''Empty String'''</tt> | Default value: <tt>'''Empty String'''</tt> | ||
|- | |- |
Revision as of 06:16, 4 June 2015
Options Table
Name | Type | Value | ||||||||
---|---|---|---|---|---|---|---|---|---|---|
Mode | Integer | Specifies...
Possible values are:
Default value: -1 (Auto) | ||||||||
SMTP | Dictionary | Specifies parameters of SMTP server if Mode set 1 (SMTP). | ||||||||
From | String | Specifies a sender email address.
Default value: Empty String | ||||||||
To | String | Specifies an recipients email address.
Default value: Empty String | ||||||||
Cc | String | Specifies an email address for send copy of letter.
Default value: Empty String | ||||||||
BCc | String | Specifies an email address for send hidden copy of letter.
Default value: Empty String | ||||||||
Subject | String | Specifies a title of letter.
Default value: Empty String | ||||||||
Message | String | Specifies a text of letter.
Default value: Empty String | ||||||||
ResolveAddressBook | Boolean | Specifies...
Default value: false | ||||||||
ShowClientWindow | Boolean | Specifies...
Default value: true | ||||||||
Priority | Integer | Specifies a priority mark for letter (see below). Priority letters can be accented in a recipient mailbox.
Possible values are:
Default value: 1 (Normal) | ||||||||
PackAttachmentsMode | Integer | Specifies a method for compressing attachment files (if it exists). We use only ZIP algorithm.
Possible values are:
Default value: 0 (NoComress) | ||||||||
HideOptionsBtnOnErrorMsg | Boolean | Specifies...
Default value: true | ||||||||
OpenLocalFolder | Boolean | Specifies...
Default value: true | ||||||||
LocalFolder | String | Specifies...
Default value: Empty String | ||||||||
OnePackName | String | Specifies a name which used for naming an attached archive file, if in PackAttachmentsMode parameter set 2 (CompressAllToOne).
Default value: Empty String | ||||||||
ParentWnd | Integer64 | Specifies...
Default value: 0 |
SMTP Table
Name | Type | Value |
---|---|---|
ServerURL | String | Specifies a SMTP server address.
Default value: Empty String |
ServerPort | Integer | Specifies a SMTP server port.
Default value: 25 |
NeedAuth | Boolean | Specifies whether a SMTP need authentication.
Default value: false |
User | String | Specifies a username for SMTP if it need authentication.
Default value: Empty String |
Password | String | Specifies a user password for SMTP if it need authentication.
Default value: Empty String |
NeedTLS | Boolean | Set truefor using TLS protocol for doing your connection to SMTP server safe. If UseSSL property is truethen this property is ignored.
Default value: false |
UseSSL | Boolean | Set true for using SSL protocol for doing your connection to SMTP server safe. If it true then NeedTLS property is ignored.
Default value: false |