SMTPClient.jl
SMTPClient.jl copied to clipboard
Unix carriage return
I have had the error "message has lines too long for transport." The fix, for me, was to do so for the body : replace(message, "\n"=>"\r\n")
. Overwise UNIX carriage return is not detected by mailers, it would be great to detect it and correct it if necessary.