// Sending text message
\Yii::$app->telegramNotification->send('chat_id',[
'text' => "Hello world"
]);
// Sending photo message, this example text will be comment of photo
\Yii::$app->telegramNotification->send('chat_id',[
'photo' => "PHOTO_URL",
'text' => "Hello world",
]);
// Sending video message, this example text will be comment of video
\Yii::$app->telegramNotification->send('chat_id',[
'video' => "VIDEO_URL",
'text' => "Hello world",
]);
// Send message multiple chats
\Yii::$app->telegramNotification->multipleSend(['chat_id1','chat_id2'],[
'text' => "Hello world"
]);
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.