Message format change
This commit is contained in:
parent
d19f7670f8
commit
6c05fbe3a5
@ -71,7 +71,12 @@ class ProfileController extends \yii\rest\Controller
|
|||||||
$token = \Yii::$app->params['telegramBotToken'];
|
$token = \Yii::$app->params['telegramBotToken'];
|
||||||
$chat_id = \Yii::$app->params['telegramBotChatId'];
|
$chat_id = \Yii::$app->params['telegramBotChatId'];
|
||||||
|
|
||||||
$message = "Пришёл запрос на интервью.\nПрофиль: {$attributes['profile_id']}\nТелефон: {$attributes['phone']}\nEmail: {$attributes['email']}\nКомментарий: {$attributes['comment']}";
|
$message =
|
||||||
|
"Пришёл запрос на интервью.\n".
|
||||||
|
"Профиль: {$attributes['profile_id']}\n".
|
||||||
|
"Телефон: {$attributes['phone']}\n".
|
||||||
|
"Email: {$attributes['email']}\n".
|
||||||
|
"Комментарий: {$attributes['comment']}";
|
||||||
|
|
||||||
$bot = new TelegramBotService($token);
|
$bot = new TelegramBotService($token);
|
||||||
$bot->sendMessageTo($chat_id, $message);
|
$bot->sendMessageTo($chat_id, $message);
|
||||||
|
Loading…
Reference in New Issue
Block a user