Indy:TidMessage 删除所有重音,如何禁用它?
我正在使用 indy 组件 TidSMTP
和 TidMessage
发送电子邮件。
我收到的邮件没有口音。
例如,如果我这样做:
MyTIdMessage.Body.Text := 'Tèst';
当我收到电子邮件时,我看到“Test”而不是“Tèst”
有没有办法告诉 TIdMessage 不要忽略重音或者这是一个错误?
注意:我使用的是 Indy 10.5.8.0
I am sending e-mails using the indy components TidSMTP
and TidMessage
.
The mails I recieve are without accents.
If I do for example:
MyTIdMessage.Body.Text := 'Tèst';
As i recieve the e-mail I see "Test" instead of "Tèst"
Is there a way to tell TIdMessage not to ignore accents or is this bug?
Note: I am using Indy 10.5.8.0
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请务必设置正确的 Enconding、ContentTransferEncoding 和 CharSet。作为最古老的协议之一,邮件被设计为仅使用 7 位的计算机使用,因此需要对非 US-ASCII 字符进行编码。有一些不同的方法(引用可打印等)
还要检查 OnInitializeISO 事件。
Be sure to set the correct Enconding, ContentTransferEncoding and CharSet. Being one of the oldest protocol, mail is designed to be used by computers using only 7 bits, and non US-ASCII characters thereby needs to be encoded. There are some different ways (quoted-printable, ecc.)
Also check the OnInitializeISO event.
确保通过执行此操作设置正确的 CharSet,
字符串值列在 IdCharsetNames 数组中。
Make sure you set the correct CharSet by doing this
the string values are listed in IdCharsetNames array.