shawwwn/uMail

Text is empty if the string contains a colon ":"

Closed this issue · 3 comments

smtp.send(textOut)

textOut = "My IP address is 192.168.1.1" works
textOut = "My IP address: 192.168.1.1" doesn't work.

There is a similar issue with new line characters "\n"

Colons don't get send because first n lines with a colon may be interpreted by the server as email headers.
You need to not use colon in the first line or use some sort of special characters to escape that colon.

Can you provide more details regarding the new character?

You're welcome.