I'm using telethon python3 library and I'm a bit stuck on this issue:
client = TelegramClient(session, api_id, api_hash).start()
client.send_message(recipient, string_message)
I try to split the message into multiple lines but I'm not able to find what char (or combination of chars) should be used for that. (for example **text**
will make text, __text__
will make text, etc)
Obviously \n is not working. I found some ideas about inserting the chr(10)
as new line mark in the string_message
but I had no success with it.