File tree Expand file tree Collapse file tree 1 file changed +16
-11
lines changed
Expand file tree Collapse file tree 1 file changed +16
-11
lines changed Original file line number Diff line number Diff line change @@ -38,17 +38,22 @@ All ``Set ...`` keywords provide corresponding ``Get ...`` keywords.
3838
3939Examples:
4040
41- # Send a message with one client and a List which contains our images
42- @{IMAGE_LIST}= Create List http://www.mysite.com/image1.jpg http://www.mysite.com/image2.jpg
43- Send Apprise Message title=Robot Framework Apprise Demo body=Connect to Apprise with your Robot Framework Tests! clients=<apprise_client> attachments=${IMAGE_LIST}
44-
45- # Send a message with one client. Our attachments use a comma-separated string (default)
46- Send Apprise Message title=Robot Framework Apprise Demo body=Connect to Apprise with your Robot Framework Tests! clients=<apprise_client> attachments=http://www.mysite.com/image1.jpg,http://www.mysite.com/image2.jpg
47-
48- # Send a message with one client. Our attachments use a custom delimiter ^
49- Set Delimiter ^
50- Send Apprise Message title=Robot Framework Apprise Demo body=Connect to Apprise with your Robot Framework Tests! clients=<apprise_client> attachments=http://www.mysite.com/image1.jpg^http://www.mysite.com/image2.jpg
51-
41+ ``` robot
42+ # Send a message with one client and a List which contains our images
43+ @{IMAGE_LIST}= Create List http://www.mysite.com/image1.jpg http://www.mysite.com/image2.jpg
44+ Send Apprise Message title=Robot Framework Apprise Demo body=Connect to Apprise with your Robot Framework Tests! clients=<apprise_client> attachments=${IMAGE_LIST}
45+ ```
46+
47+ ``` robot
48+ # Send a message with one client. Our attachments use a comma-separated string (default)
49+ Send Apprise Message title=Robot Framework Apprise Demo body=Connect to Apprise with your Robot Framework Tests! clients=<apprise_client> attachments=http://www.mysite.com/image1.jpg,http://www.mysite.com/image2.jpg
50+ ```
51+
52+ ``` robot
53+ # Send a message with one client. Our attachments use a custom delimiter ^
54+ Set Delimiter ^
55+ Send Apprise Message title=Robot Framework Apprise Demo body=Connect to Apprise with your Robot Framework Tests! clients=<apprise_client> attachments=http://www.mysite.com/image1.jpg^http://www.mysite.com/image2.jpg
56+ ```
5257
5358## Known issues
5459
You can’t perform that action at this time.
0 commit comments