ILIAS
release_5-4 Revision v5.4.26-12-gabc799a52e6
|
SwiftMailerHandler uses Swift_Mailer to send the emails. More...
Public Member Functions | ||||
__construct (\Swift_Mailer $mailer, $message, $level=Logger::ERROR, $bubble=true) | ||||
__get ($name) | ||||
BC getter, to be removed in 2.0. More... | ||||
Public Member Functions inherited from Monolog\Handler\MailHandler | ||||
handleBatch (array $records) | ||||
{Handles a set of records at once.
| ||||
Public Member Functions inherited from Monolog\Handler\AbstractProcessingHandler | ||||
handle (array $record) | ||||
{Handles a record.All records may be passed to this method, and the handler should discard those that it does not want to handle.The return value of this function controls the bubbling process of the handler stack. Unless the bubbling is interrupted (by returning true), the Logger class will keep on calling further handlers in the stack with a given log record.
| ||||
Public Member Functions inherited from Monolog\Handler\AbstractHandler | ||||
__construct ($level=Logger::DEBUG, $bubble=true) | ||||
isHandling (array $record) | ||||
{Checks whether the given record will be handled by this handler.This is mostly done for performance reasons, to avoid calling processors for nothing.Handlers should still check the record levels within handle(), returning false in isHandling() is no guarantee that handle() will not be called, and isHandling() might not be called for a given record.
| ||||
handleBatch (array $records) | ||||
{Handles a set of records at once.
| ||||
close () | ||||
Closes the handler. More... | ||||
pushProcessor ($callback) | ||||
{Adds a processor in the stack.
| ||||
popProcessor () | ||||
{Removes the processor on top of the stack and returns it.
| ||||
setFormatter (FormatterInterface $formatter) | ||||
{Sets the formatter.
| ||||
getFormatter () | ||||
{Gets the formatter.
| ||||
setLevel ($level) | ||||
Sets minimum logging level at which this handler will be triggered. More... | ||||
getLevel () | ||||
Gets minimum logging level at which this handler will be triggered. More... | ||||
setBubble ($bubble) | ||||
Sets the bubbling behavior. More... | ||||
getBubble () | ||||
Gets the bubbling behavior. More... | ||||
__destruct () | ||||
reset () | ||||
Protected Member Functions | |
send ($content, array $records) | |
{} More... | |
getSubjectFormatter ($format) | |
Gets the formatter for the Swift_Message subject. More... | |
buildMessage ($content, array $records) | |
Creates instance of Swift_Message to be sent. More... | |
Protected Member Functions inherited from Monolog\Handler\MailHandler | |
send ($content, array $records) | |
Send a mail with the given content. More... | |
write (array $record) | |
{} More... | |
getHighestRecord (array $records) | |
Protected Member Functions inherited from Monolog\Handler\AbstractProcessingHandler | |
write (array $record) | |
Writes the record down to the log of the implementing handler. More... | |
processRecord (array $record) | |
Processes a record. More... | |
Protected Member Functions inherited from Monolog\Handler\AbstractHandler | |
getDefaultFormatter () | |
Gets the default formatter. More... | |
Protected Attributes | |
$mailer | |
Protected Attributes inherited from Monolog\Handler\AbstractHandler | |
$level = Logger::DEBUG | |
$bubble = true | |
$formatter | |
$processors = array() | |
Private Attributes | |
$messageTemplate | |
SwiftMailerHandler uses Swift_Mailer to send the emails.
Definition at line 24 of file SwiftMailerHandler.php.
Monolog\Handler\SwiftMailerHandler::__construct | ( | \Swift_Mailer | $mailer, |
$message, | |||
$level = Logger::ERROR , |
|||
$bubble = true |
|||
) |
\Swift_Mailer | $mailer | The mailer to use |
callable | \Swift_Message | $message | An example message for real messages, only the body will be replaced |
int | $level | The minimum logging level at which this handler will be triggered |
bool | $bubble | Whether the messages that are handled can bubble up the stack or not |
Definition at line 35 of file SwiftMailerHandler.php.
References Monolog\Handler\AbstractHandler\$bubble, Monolog\Handler\AbstractHandler\$level, Monolog\Handler\SwiftMailerHandler\$mailer, and $message.
Monolog\Handler\SwiftMailerHandler::__get | ( | $name | ) |
BC getter, to be removed in 2.0.
Definition at line 101 of file SwiftMailerHandler.php.
References $name, and Monolog\Handler\SwiftMailerHandler\buildMessage().
|
protected |
Creates instance of Swift_Message to be sent.
string | $content | formatted email body to be sent |
array | $records | Log records that formed the content |
Definition at line 69 of file SwiftMailerHandler.php.
References $message, Monolog\Handler\SwiftMailerHandler\$messageTemplate, and Monolog\Handler\SwiftMailerHandler\getSubjectFormatter().
Referenced by Monolog\Handler\SwiftMailerHandler\__get(), and Monolog\Handler\SwiftMailerHandler\send().
|
protected |
Gets the formatter for the Swift_Message subject.
string | $format | The format of the subject |
Definition at line 57 of file SwiftMailerHandler.php.
References $format.
Referenced by Monolog\Handler\SwiftMailerHandler\buildMessage().
|
protected |
{}
Definition at line 46 of file SwiftMailerHandler.php.
References Monolog\Handler\SwiftMailerHandler\buildMessage().
|
protected |
Definition at line 26 of file SwiftMailerHandler.php.
Referenced by Monolog\Handler\SwiftMailerHandler\__construct().
|
private |
Definition at line 27 of file SwiftMailerHandler.php.
Referenced by Monolog\Handler\SwiftMailerHandler\buildMessage().