Method |
Description |
|
__construct ( string $subj = null, mixed $rcpts = null ) : Mail |
Constructor |
|
add ( string $email, string $name = null ) : Mail |
Add a recipient to the queue |
|
addRecipients ( mixed $rcpts ) : Mail |
Add recipients to the queue |
|
attachFile ( string $file ) : Mail |
Attach a file to the mail object. |
|
bcc ( string $email, string $name = null ) : Mail |
Alias to set the bcc headers |
|
cc ( string $email, string $name = null ) : Mail |
Alias to set the cc headers |
|
from ( string $email, string $name = null, boolean $replyTo = true ) : Mail |
Alias to set the from and reply-to headers |
|
getAttachments ( ) : array |
Get attachments |
|
getBoundary ( ) : string |
Get MIME boundary |
|
getCharset ( ) : string |
Get character set |
|
getEol ( ) : string |
Get EOL |
|
getHeader ( string $name ) : string |
Get the mail header |
|
getHeaders ( ) : array |
Get the mail header |
|
getHtml ( ) : string |
Get HTML part of the message. |
|
getMessage ( ) : Message |
Get the mail message |
|
getQueue ( ) : Queue |
Get the mail queue |
|
getSubject ( ) : string |
Get the subject |
|
getText ( ) : string |
Get text part of the message. |
|
replyTo ( string $email, string $name = null, boolean $from = true ) : Mail |
Alias to set the reply-to and from headers |
|
saveTo ( string $to = null, string $format = null ) : Mail |
Save mail message or messages in a folder to be sent at a later date. |
|
send ( ) : void |
Send mail message or messages. |
|
sendAsGroup ( boolean $group ) : Mail |
Set the send as group flag |
|
sendFrom ( string $from = null, boolean $delete = false ) : Mail |
Send mail message or messages that are saved in a folder. |
|
setBoundary ( string $bnd = null ) : Mail |
Set MIME boundary |
|
setCharset ( string $chr ) : Mail |
Set character set |
|
setEol ( string $eol = Mail::CRLF ) : Mail |
Set EOL |
|
setHeader ( string $name, string $value ) : Mail |
Set a mail header |
|
setHeaders ( array $headers ) : Mail |
Set mail headers |
|
setHtml ( string $html ) : Mail |
Set HTML part of the message. |
|
setParams ( mixed $params = null ) : Mail |
Set parameters |
|
setSubject ( string $subj ) : Mail |
Set the subject |
|
setText ( string $text ) : Mail |
Set text part of the message. |
|
to ( string $email, string $name = null ) : Mail |
Alias to add a recipient to the queue |
|