XOOPS RMCommon Utilities  2.1.8.91RC
 All Classes Namespaces Files Functions Variables
Message.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 
11 //@require 'Swift/Mime/MimeEntity.php';
12 
22 {
23 
29  public function generateId();
30 
36  public function setSubject($subject);
37 
43  public function getSubject();
44 
50  public function setDate($date);
51 
57  public function getDate();
58 
64  public function setReturnPath($address);
65 
71  public function getReturnPath();
72 
90  public function setSender($address, $name = null);
91 
99  public function getSender();
100 
118  public function setFrom($addresses, $name = null);
119 
128  public function getFrom();
129 
145  public function setReplyTo($addresses, $name = null);
146 
155  public function getReplyTo();
156 
170  public function setTo($addresses, $name = null);
171 
180  public function getTo();
181 
192  public function setCc($addresses, $name = null);
193 
202  public function getCc();
203 
218  public function setBcc($addresses, $name = null);
219 
228  public function getBcc();
229 
230 }