MML - Mail Markup Language

  • The Problems
  • The Solutions
  • Semantics
  • Downloads
  • Change Log
  • About This Site
  • External Links
  • Manifesto

Current version: v1.1

Sample 1

<?xml version="1.0" encoding="utf-8"?>
<mail
  version="1.0"
  xmlns:xsd="http://www.w3.org/2001/XMLSchema"
  xmlns:xfm="http://www.w3.org/2002/xforms"
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:noNamespaceSchemaLocation="http://mailmarkup.org/mail.xsd"
  mail-type="application/mail">
  <session time-stamp="1990-11-08T11:48:49.75">
    <address>
      <to>destination@sample.com</to>
      <from>source@sample.com</from>
      <reply-to>no-reply</reply-to>
    </address>
    <subject>Subject Text</subject>
    <plain-text>Plain text mail message.</plain-text>
  </session>
</mail>