File: message.xml

package info (click to toggle)
libphp-swiftmailer 5.2.2-1%2Bdeb8u1
  • links: PTS, VCS
  • area: main
  • in suites: jessie
  • size: 2,532 kB
  • ctags: 6,451
  • sloc: php: 26,587; xml: 22; sh: 18; makefile: 2
file content (22 lines) | stat: -rw-r--r-- 623 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0" encoding="utf-8" ?>
<message>
  <subject>Some test message</subject>
  <to name="Chris Corbyn">chris@w3style.co.uk</to>
  <to name="Mark Corbyn">mark@swiftmailer.org</to>
  <from>chris.corbyn@sitepoint.com</from>
  <content-type>text/plain</content-type>
  <body>
    Here's a recipe for beef stifado
  </body>
  <part>
    <content-type>text/html</content-type>
    <body>
      This is the other part
    </body>
  </part>
  <attachment>
    <content-type>application/pdf</content-type>
    <filename>stifado.pdf</filename>
    <body type="file">/path/to/stifado.pdf</body>
  </attachment>
</message>