Go to the first, previous, next, last section, table of contents.


4.1 Simple MML Example

Here's a simple `multipart/alternative':

<#multipart type=alternative>
This is a plain text part.
<#part type=text/enriched>
<center>This is a centered enriched part</center>
<#/multipart>

After running this through mml-generate-mime, we get this:

Content-Type: multipart/alternative; boundary="=-=-="

--=-=-=

This is a plain text part.

--=-=-=
Content-Type: text/enriched

<center>This is a centered enriched part</center>

--=-=-=--


Go to the first, previous, next, last section, table of contents.