SEND MULTILINE MESSAGES THROUGH TELEGRAM API
Just build the requests like this:
MSG="
This is a multiline
message sample"
curl --data "chat_id=${CHAT_ID}" --data-urlencode "text=${MSG}" 'https://api.telegram.org/bot'${BOT_API_TOKEN}'/sendMessage'
------------------------------
^ this does the trick