I create an “encrypted” e-mail verification link using .NET’s Convert.ToBase64String. Seldomly, I get informed that the link is splited, as if the new srting had new lines in it. Is that possible? Most likely it’s just an e-mail client problem, but I wanted to be sure…
I create an encrypted e-mail verification link using .NET’s Convert.ToBase64String. Seldomly, I get informed
Share
Yes, it is possible – if you pass it
Base64FormattingOptions.InsertLineBreaks, you will get a line break every 76 characters.By default, there should be no line breaks, though.