Telegram Bot API notification service.
This service sends text messages through Telegram's sendMessage endpoint.
The public PingPong payload uses :content; the service maps it to Telegram's
text field before sending the request.
Summary
Functions
Sends a Telegram message.
Types
Functions
@spec call(payload(), options()) :: PingPong.result()
Sends a Telegram message.
Required payload:
%{
content: "Message text",
chat_id: "123456789"
}Required options:
%{token: "123456:telegram-bot-token"}Missing required values return {:error, {:missing_required_params}, nil}.