Hi I am writing some code on asp.net and C# that creates email. It uses "\r\n" for its linebreaks for the plain text version of the email. However, this causes "^M" to appear when the email is viewed in Linux. From what I've been reading,
Windows uses "\r\n" for linebreaks
Linux uses "\n"
Mac uses "\r"
First, is this information correct? And second, if it is indeed correct, then how can I create a plaintext email with linebreaks that work on all the different operating systems? what solutions do people usually use?
Windows uses "\r\n" for linebreaks
Linux uses "\n"
Mac uses "\r"
First, is this information correct? And second, if it is indeed correct, then how can I create a plaintext email with linebreaks that work on all the different operating systems? what solutions do people usually use?