You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+7-3Lines changed: 7 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,12 +23,16 @@ In order to run the example code, you need to provide at least one valid target
23
23
|``Send Apprise Message``|Sends a push message through Apprise|
24
24
|``Set Clients`` and ``Set Attachments``|Sets a new value list and replace the previous values|
25
25
|``Add Client`` and ``Add Attachment``|Adds a value to an existing list|
26
-
|``Remove Client`` and ``Remove Attachment``|Removes a value from an existing list (if present)|
26
+
|``Remove Client`` and ``Remove Attachment``|Removes a value from an existing list (if present). Trying to remove a non-existing entry will NOT result in an error|
27
27
|``Clear All Clients`` and ``Clear All Attachments``|Completely removes the current values from the respective list|
28
28
|``Set Delimiter``|Optional reconfiguration of this Robot Framework library's delimiter. See details below|
29
+
|``Set Notify Type``|Sets one of Apprise's [supported notify types](https://github.com/caronc/apprise/wiki/Development_API#message-types-and-themes). Valid values are ``info``,``success``,``warning``, and ``failure``. Default notify type is ``info``|
30
+
|``Set Body Format``|Sets one of Apprise's [supported body formats](https://github.com/caronc/apprise/wiki/Development_API#notify--send-notifications). Valid values are ``html``,``text``, and ``markdown``. Default body format is ``html``|
29
31
30
32
31
-
All ``clients`` and ``attachments`` options can be passed as a ``List`` type variable or as a string. If you use a string, the default delimiter is a comma ``,``. In case you need to use a different delimiter, use the ``Set Delimiter`` keyword.
33
+
All ``clients`` and ``attachments`` options can be passed as a ``List`` type variable or as a ``string``. If you use a ``string``, the default delimiter is a comma ``,``. In case you need to use a different delimiter for your string, use the ``Set Delimiter`` keyword.
34
+
35
+
All ``Set ...`` keywords provide corresponding ``Get ...`` keywords.
32
36
33
37
``Attachments`` are purely optional. Providing at least one ``Client`` is mandatory, though. Both ``Attachments`` and ``Clients`` can either be provided as a ``List`` item or as a separated string.
34
38
@@ -49,4 +53,4 @@ Examples:
49
53
## Known issues
50
54
51
55
- This library uses Apprise's default async behavior. Currently, you cannot send messages in a synchronous way.
52
-
- The current version of this library does not permit you to set the target format (text, HTML). It uses Apprise's default format which is HTML.
56
+
- The current version of this library does not support Apprise's whole feature set. Options such as tagging are not implemented.
0 commit comments