Message format change

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

View File

@ -67,11 +67,16 @@ class ProfileController extends \yii\rest\Controller
$model->created_at = time();
$model->user_id = \Yii::$app->user->id;
if ($model->save()){
if ($model->save()) {
$token = \Yii::$app->params['telegramBotToken'];
$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->sendMessageTo($chat_id, $message);