
$response = $telegram->sendMessage([
'chat_id' => $chat_id,
'text' => 'Success! Your Telegram account with name <b>'.$first_name.' '.$last_name.'</b> has been added into iBridge data!.%0ABack to <a href="https://ibridgeapp.com/home">iBridge</a>',
'parse_mode' => 'HTML'
]);
Using n or %0A did not make a new line. any suggestion?
Please use n inside double quotation mark ("), not in single quote (')
Please Use %0a for new Line (I try in PHP it's working)
Please Use %0a for new Line (I try in PHP it's working)
Works fine with GET API request.
Most helpful comment
Please use n inside double quotation mark ("), not in single quote (')