Message format change

This commit is contained in:
Korzinkayablok 2021-08-24 17:19:41 +03:00
parent d19f7670f8
commit 6c05fbe3a5

View File

@ -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);