English 中文(简体)
在电子邮件正文中发送 RTF 文件
原标题:Send a RTF file in the body of an email

我的应用程序生成报告作为 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对象。



上一篇:
下一篇:


相关问题
Anyone feel like passing it forward?

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. ...

NSArray s, Primitive types and Boxing Oh My!

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 ...

C# Marshal / Pinvoke CBitmap?

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 ...

How to Use Ghostscript DLL to convert PDF to PDF/A

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, ...

Linqy no matchy

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. ...

热门标签