message.xml 623B

1234567891011121314151617181920212223
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <message>
  3. <subject>Some test message</subject>
  4. <to name="Chris Corbyn">chris@w3style.co.uk</to>
  5. <to name="Mark Corbyn">mark@swiftmailer.org</to>
  6. <from>chris.corbyn@sitepoint.com</from>
  7. <content-type>text/plain</content-type>
  8. <body>
  9. Here's a recipe for beef stifado
  10. </body>
  11. <part>
  12. <content-type>text/html</content-type>
  13. <body>
  14. This is the other part
  15. </body>
  16. </part>
  17. <attachment>
  18. <content-type>application/pdf</content-type>
  19. <filename>stifado.pdf</filename>
  20. <body type="file">/path/to/stifado.pdf</body>
  21. </attachment>
  22. </message>