Example 2: Outgoing MIME content as HTML
Let's say you want to retrieve the following MIME content as HTML:
MIME-Version: 1.0
Content-Type: multipart/alternative;
boundary="XXXXboundary text"
--XXXXboundary text
Content-Type: text/markdown
**this is the markdown text**
--XXXXboundary text
Content-Type: text/html
<p><strong>this is the html text</strong></p>
--XXXXboundary text
Content-Type: text/plain
this is the plain text
--XXXXboundary text--
You then set the value of richTextAs
query parameter to html
, and retrieve the document that contains it.
You should get the following in the richtext
field response:
{
"type": "text/html",
"encoding": "PLAIN",
"content": "<p><strong>this is the html text</strong></p>\r\n"
}
Note
Since you have a text/html
part in the stored multipart MIME, it gets that and returns it as a response.