Indy:TidMessage 删除所有重音,如何禁用它?

发布于 2024-10-04 07:51:19 字数 285 浏览 6 评论 0原文

我正在使用 indy 组件 TidSMTPTidMessage 发送电子邮件。

我收到的邮件没有口音。

例如,如果我这样做:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

不忘初心 2024-10-11 07:51:19

请务必设置正确的 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.

豆芽 2024-10-11 07:51:19

确保通过执行此操作设置正确的 CharSet,

MyIdMessage.CharSet := 'US-ASCII';

字符串值列在 IdCharsetNames 数组中。

Make sure you set the correct CharSet by doing this

MyIdMessage.CharSet := 'US-ASCII';

the string values are listed in IdCharsetNames array.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文