TYPO3  7.6
MimeEntity.php
Go to the documentation of this file.
1 <?php
2 
3 /*
4  * This file is part of SwiftMailer.
5  * (c) 2004-2009 Chris Corbyn
6  *
7  * For the full copyright and license information, please view the LICENSE
8  * file that was distributed with this source code.
9  */
10 
17 {
19  const LEVEL_TOP = 16;
20 
22  const LEVEL_MIXED = 256;
23 
25  const LEVEL_ALTERNATIVE = 4096;
26 
28  const LEVEL_RELATED = 65536;
29 
39  public function getNestingLevel();
40 
46  public function getContentType();
47 
60  public function getId();
61 
69  public function getChildren();
70 
78  public function setChildren(array $children);
79 
85  public function getHeaders();
86 
94  public function getBody();
95 
102  public function setBody($body, $contentType = null);
103 
109  public function toString();
110 
116  public function toByteStream(Swift_InputByteStream $is);
117 }