mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2025-04-11 11:41:56 +02:00
11 lines
476 B
Plaintext
11 lines
476 B
Plaintext
Token = FunctionParameters["Telegram_Token"];
|
|
ChatID = FunctionParameters["Telegram_ChatID"];
|
|
ChannelID = FunctionParameters["Telegram_ChannelID"];
|
|
Name = FunctionParameters["Name"];
|
|
LastName = FunctionParameters["Surname"];
|
|
Phone = FunctionParameters["Phone"];
|
|
|
|
Result = OPI_Telegram.SendContact(Token, ChatID , Name, LastName, Phone);
|
|
|
|
Result = OPI_Telegram.SendContact(Token, ChannelID, Name, LastName, Phone);
|