Class yii\symfonymailer\Mailer
| Inheritance | yii\symfonymailer\Mailer » yii\mail\BaseMailer |
|---|---|
| Source Code | https://github.com/yiisoft/yii2-symfonymailer/blob/master/src/Mailer.php |
Public Properties
| Property | Type | Description | Defined By |
|---|---|---|---|
| $encrypter | yii\symfonymailer\Mailer | ||
| $messageClass | string | Message default class name. | yii\symfonymailer\Mailer |
| $signer | yii\symfonymailer\Mailer | ||
| $signerOptions | array | yii\symfonymailer\Mailer | |
| $transportFactory | yii\symfonymailer\Mailer |
Public Methods
| Method | Description | Defined By |
|---|---|---|
| setTransport() | yii\symfonymailer\Mailer |
Protected Methods
| Method | Description | Defined By |
|---|---|---|
| sendMessage() | yii\symfonymailer\Mailer |
Property Details
Message default class name.
Method Details
| protected void sendMessage ( $message ) | ||
| $message | yii\symfonymailer\MessageWrapperInterface|\yii\mail\MessageInterface | |
| throws | \Symfony\Component\Mailer\Exception\TransportExceptionInterface | |
|---|---|---|
protected function sendMessage($message): bool
{
if (!($message instanceof MessageWrapperInterface)) {
throw new InvalidArgumentException(sprintf(
'The message must be an instance of "%s". The "%s" instance is received.',
MessageWrapperInterface::class,
get_class($message),
));
}
$message = $message->getSymfonyEmail();
if ($this->encrypter !== null) {
$message = $this->encrypter->encrypt($message);
}
if ($this->signer !== null) {
$message = $this->signer->sign($message, $this->signerOptions);
}
$this->getTransport()->send($message);
return true;
}
| public void setTransport ( array|\Symfony\Component\Mailer\Transport\TransportInterface $transport ) | ||
| $transport | \yii\symfonymailer\TransportConfigArray|\Symfony\Component\Mailer\Transport\TransportInterface | |
| throws | \yii\base\InvalidConfigException |
on invalid argument. |
|---|---|---|
public function setTransport(array|TransportInterface $transport): void
{
$this->_transport = $transport instanceof TransportInterface ? $transport : $this->createTransport($transport);
}