Jumat, 28 November 2014

Belajar HTML

Last week I blogged about sending the contents of a RichText field (including images and attachments) as an HTML mail. Today’s task was related: get the contents of a RichText item as HTML, knowing that the contents can be stored in the item as either MIME or standard RichText.
With the wrapDocument() function I showed you last week you can easily get MIME contents as HTML. It turns out that with some small changes you can use the same method to let Domino convert ‘standard’ RichText into HTML. You probably saw this in action already: create a document with RichText in the Notes client and edit it on the web. What’s new is that this method allows you to do it programmatically.
The trick is in the DominoRichTextItem class: it has two constructors to create it: using either aMIMEEntity or by giving it a RichTextItem. That’s all the info I needed to update my previous function:
star
(*)