当您使用System.Net.MailMessage动态发送电子邮件时,为什么不需要指定任何编码?
根据我的模糊理解,任何文本都以字节流的形式在互联网上传输。当您将文本更改为字节或从字节更改时,您需要编码。 MailMessage.Body 只是一个纯字符串(文本),它作为电子邮件通过互联网发送。为什么不用指定编码就能正确显示汉字呢?
In my vague understanding, any texts are transferred over the internet as streams of bytes. And when you change texts to and from bytes, you need encoding. MailMessage.Body is just a plain string(text) and it gets sent over the internet as emails. Why is it that it can correctly display Chinese characters without even having to specify the encoding?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
简单的答案 - 如果正文中的任何字符不支持 ASCII(Chr(127) 以上),则编码类型为 UTF-8,否则编码为 ASCII。以下是 Reflector 中 body 属性的反汇编:
以下是 IsAscii 函数的内容...
当然,可以通过手动指定编码来覆盖此行为。
Simple answer - if any character in the body is not supported by ASCII (above Chr(127)), the encoding type is UTF-8, otherwise the encoding is ASCII. Here is the disassembly of the body property from Reflector:
And here are the contents of the IsAscii function...
Of course, this behavior can be overridden by manually specifying an encoding.