TYPO3  7.6
HeaderSet.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 {
24  public function addMailboxHeader($name, $addresses = null);
25 
32  public function addDateHeader($name, $timestamp = null);
33 
40  public function addTextHeader($name, $value = null);
41 
49  public function addParameterizedHeader($name, $value = null, $params = array());
50 
57  public function addIdHeader($name, $ids = null);
58 
65  public function addPathHeader($name, $path = null);
66 
77  public function has($name, $index = 0);
78 
91  public function set(Swift_Mime_Header $header, $index = 0);
92 
103  public function get($name, $index = 0);
104 
112  public function getAll($name = null);
113 
119  public function listAll();
120 
129  public function remove($name, $index = 0);
130 
136  public function removeAll($name);
137 
143  public function newInstance();
144 
152  public function defineOrdering(array $sequence);
153 
161  public function setAlwaysDisplayed(array $names);
162 
168  public function toString();
169 }