-1

我正在将 Lumisoft 用于一个小型电子邮件项目。到目前为止一切都很好。我管理了我想要实现的大部分事情。然而,并非全部。我可以阅读电子邮件的正文,但是当我显示它们时,它是纯文本的。我来给你展示。当我在浏览器上登录我的电子邮件时,电子邮件显示如下: 在此处输入图像描述

但是,当我阅读正文并将其显示在富文本框中时,它是正常的,就像这样:

New comment on your post "Spotify Ads Blocker - The best ad blocker for Spotify"
https://iblockify.wordpress.com...

Author : jc (removed , removed.dynamic.jazztel.es)
E-mail : removed@gmail.com
URL    : 
Whois  : http://whois.arin.net/removed
Comment: 
I have the same problem with another computer with OS Windows 7 x64 bit, without proxy configuration and with the .Net Framework version 4.5.1

Trash it: https://removed
Spam it: https://removed


You can reply to this comment via email as well, just click the reply button in your email client.

所以我的问题就在这里;显示电子邮件和接近浏览器显示的最佳解决方案是什么?我不认为我可以让它 100% 相似,但必须有一种方法让它看起来比现在更好......

我只是来这里的一些想法,所以把它带来!

4

1 回答 1

0

尝试使用 WebBrowser 控件,而不是使用 RichTextBox 控件。

wb = new WebBrowser();
wb.DocumentText = EmailContent;
form.Controls.Add(wb);

等等

于 2015-07-15T23:53:16.900 回答