1 SendContact
dax edited this page 2019-05-22 10:49:06 +02:00

SendContact($destination, $number, $firstName, $lastName=null)

<?php
#
# include class 
#
require('Telegram.class.php');

#
# instance
#
$bot = new TelegramBot('mytoken');

#
# Chat action method
#
$bot->SendContact('DestinationMsgId', '3480355977', 'Contact name');


?>