Метод |
Описание |
|
generateId ( ) : string |
Generates a valid Message-ID and switches to it. |
|
getBcc ( ) : string[] |
Get the Bcc addresses for this message. |
|
getCc ( ) : string[] |
Get the Cc addresses for this message. |
|
getDate ( ) : integer |
Get the origination date of the message as a UNIX timestamp. |
|
getFrom ( ) : string[] |
Get the From address(es) of this message. |
|
getReplyTo ( ) : string[] |
Get the Reply-To addresses for this message. |
|
getReturnPath ( ) : string |
Get the return-path (bounce-detect) address. |
|
getSender ( ) : string |
Get the sender address for this message. |
|
getSubject ( ) : string |
Get the subject of the message. |
|
getTo ( ) : string[] |
Get the To addresses for this message. |
|
setBcc ( mixed $addresses, string $name = null ) |
Set the Bcc address(es). |
|
setCc ( mixed $addresses, string $name = null ) |
Set the Cc address(es). |
|
setDate ( integer $date ) |
Set the origination date of the message as a UNIX timestamp. |
|
setFrom ( mixed $addresses, string $name = null ) |
Set the From address of this message. |
|
setReplyTo ( mixed $addresses, string $name = null ) |
Set the Reply-To address(es). |
|
setReturnPath ( string $address ) |
Set the return-path (bounce-detect) address. |
|
setSender ( mixed $address, string $name = null ) |
Set the sender of this message. |
|
setSubject ( string $subject ) |
Set the subject of the message. |
|
setTo ( mixed $addresses, string $name = null ) |
Set the To address(es). |
|