doc/mod/notification-telegram: describe how to declare functions...

... to use them in own scripts.
This commit is contained in:
Christian Hesse 2023-05-22 09:52:34 +02:00
parent c0aeee3d3e
commit e9b7c7f7ed

View file

@ -53,8 +53,8 @@ Usage and invocation
There's nothing special to do. Every script or function sending a notification
will now send it to your Telegram account.
But of course you can send notifications directly or use a function in your
own scripts. Give it a try:
But of course you can use the function to send notifications directly. Give
it a try:
$SendTelegram "Subject..." "Body..."
@ -63,6 +63,12 @@ methods:
$SendNotification "Subject..." "Body..."
To use the functions in your own scripts you have to declare them first.
Place this before you call them:
:global SendTelegram;
:global SendNotification;
See also
--------