updated manual authored by Martin Straka's avatar Martin Straka
......@@ -94,7 +94,7 @@ datovka --login "username='xxxxxx',password='yyyyyyyy'" --get-msg-list "dmType='
```
**--send-msg**
* *dbIDRecipient* - List of recipient Box ID separated by commas. Length of one Box ID is 7 characters. At least one must be specified. [Mandatory]
* *dbIDRecipient* - List of recipient Box ID separated by semicolons. Length of one Box ID is 7 characters. At least one must be specified. [Mandatory]
* *dmAnnotation* - Subject (title) of the message. Maximal length is 255 characters. [Mandatory]
* *dmToHands* - Person in recipient organisation. Maximal length is 50 characters. [Optional]
* *dmRecipientRefNumber* - Czech: číslo jednací příjemce. Maximal length is 50 characters. [Optional]
......@@ -111,14 +111,14 @@ datovka --login "username='xxxxxx',password='yyyyyyyy'" --get-msg-list "dmType='
* *dmType* - Message type (commercial subtypes or government message). Maximal length is 1 character. Values: {I,K,O,V} [Optional]
* *dmOVM* - OVM sending mode. Values: {0,1}, default is 1.
* *dmPublishOwnID* - Allow sender to express his name shall be available to recipient. Values: {0,1}, default is 0.
* *dmAttachment* - Full path to target files separated by semicolon. NOTE: "Semicolon" is not allowed in attachment path or file name! It can cause failure during parse of parameter string. [Mandatory]
* *dmAttachment* - Full path to target files separated by semicolons. NOTE: "Semicolon" is not allowed in attachment path or file name! It can cause failure during parse of parameter string. [Mandatory]
Return [dmID, status]
Example:
```
datovka --login "username='xxxxxx'" --send-msg "dbIDRecipient='yyyyyyy,zzzzzzz',dmAnnotation='Example',dmPersonalDelivery='1',dmAllowSubstDelivery='1',dmOVM='0',dmPublishOwnID='0',dmAttachment='C:\temp\info.doc;C:\temp\food.doc'"
datovka --login "username='xxxxxx'" --send-msg "dbIDRecipient='yyyyyyy;zzzzzzz',dmAnnotation='Example',dmPersonalDelivery='1',dmAllowSubstDelivery='1',dmOVM='0',dmPublishOwnID='0',dmAttachment='C:\temp\info.doc;C:\temp\food.doc'"
```
**--get-msg**
......
......