␡
- The rfc822 Module
- A Simple DTD for E-mail
- An Example of an E-mail Message in XML
- Processing a Eudora Mailbox
- Processing a Linux Mailbox
- Processing an E-mail Message by Using the rfc822 Module
- Sending E-mail by Using xMail
- Source Code for the SendxMail Application
- Source Code for the xMail Application
This chapter is from the book
14.3 | -An Example of an E-mail Message in XML
Here is an example of an e-mail message that conforms to the xMail DTD.
CD-ROM reference=14004.txt <?xml version="1.0"?> <!DOCTYPE xmail SYSTEM "xmail.dtd"> <xmail> <message> <headers> <field> <name>subject</name> <value>Greetings</value> </field> </headers> <body> Hello World </body> </message> </xmail>