您可以将您的 RTF 转换为 HTML, 然后发送为 HTML 邮件 。 请使用此选项 :
< a href=> http://www.codeproject.com/ articles/27431/Writing- your-Own-RTF- Converter" rel=“nofollow” >http://www.codeproject.com/arts/27431/Writing-You-Own-RTF- Converter
我的应用程序生成报告作为 rtf- files。 我想通过电子邮件发送此文件,但不是作为附件,而是在电子邮件机内。 接收者必须看到格式化的文本。 我该怎么做?
您可以将您的 RTF 转换为 HTML, 然后发送为 HTML 邮件 。 请使用此选项 :
< a href=> http://www.codeproject.com/ articles/27431/Writing- your-Own-RTF- Converter" rel=“nofollow” >http://www.codeproject.com/arts/27431/Writing-You-Own-RTF- Converter
s 在此排序, email body 仅用于标准 TEXT 。
为了将 HTML 发送到标签上的电子邮件内容与创建 html 页面的标签相对应, 大部分电子邮件客户端( 特别是基于网络的客户端) 能够按照标签和格式向读者显示为 HTML 。
关于RTF -- -- 它完全是非标准性的,而且大多由处理电子邮件的微软产品支持,他们会在身体上放置一些头版头条,将它标为RTF对象。
What is the use of default keyword in C#? Is it introduced in C# 3.0 ?
I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...
I m pretty new to the Objective-C world and I have a long history with .net/C# so naturally I m inclined to use my C# wits. Now here s the question: I feel really inclined to create some type of ...
I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...
I have two EF entities. One has a property called HouseNumber. The other has two properties, one called StartHouseNumber and one called EndHouseNumber. I want to create a many to many association ...
How to user GhostScript DLL to convert PDF to PDF/A. I know I kind of have to call the exported function of gsdll32.dll whose name is gsapi_init_with_args, but how do i pass the right arguments? BTW, ...
Since I cannot order my dictionary, what is the best way of going about taking key value pairs and also maintaing an index?
Maybe it s something I m doing wrong. I m just learning Linq because I m bored. And so far so good. I made a little program and it basically just outputs all matches (foreach) into a label control. ...