yjballestero / yii2-phpmailer
PHPMailer Adapter for Yii2
Installs: 77
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 1
Open Issues: 0
Type:yii2-extension
Requires
- php: ^8.1
- phpmailer/phpmailer: ^6.6
- yiisoft/yii2: ~2.0.39
Requires (Dev)
- phpunit/phpunit: ^9.5
- roave/security-advisories: dev-latest
This package is auto-updated.
Last update: 2025-03-29 01:04:03 UTC
README
Mail service for Yii2 using as transport PHPMailer.
Unlike the standard SwiftMailer, it supports sending using the php mail function.
Requirements
This library uses:
- PHP 8.0+.
- Yii2 2.0.39+
Install
It is recommended that you install the PHP Browser library through composer. To do so, run the following command:
composer require yjballestero/yii2-phpmailer
Or add this line into your composer.json
file:
"yjballestero/yii2-phpmailer": "dev-master"
Setting
$config = [ 'components' => [ 'mailer' => [ 'class' => yjballestero\phpmailer\PHPMailerMailer::class, // config \PHPMailer\PHPMailer\PHPMailer 'transportConfig' => [ 'Mailer' => 'smtp', //Send using SMTP 'CharSet' => CHARSET, //us-ascii, iso-8859-1, utf-8 'Encoding' => ENCODING, //7bit, 8bit, base64, binary, quoted-printable 'Host' => 'smtp.example.com', //Set the SMTP server to send through 'Username' => 'user@example.com', //SMTP username 'Password' => 'secret', //SMTP password 'Port' => MAIL_PORT, //TCP port to connect to; use 587 if you have set `SMTPSecure = PHPMailer::ENCRYPTION_STARTTLS` 'SMTPSecure' => SMTP_ENCRYPT, //TLS, SSL 'SMTPAuth' => true, //Enable SMTP authentication ], // default message config 'messageConfig' => [ 'from' => FROM ] ] ] ];
A Simple Example of Use
public function sendEmail() { $to = 'test@example.com'; $title = 'test'; $subject = 'test email'; $message = 'Hello world'; $email = Yii::$app->mailer->compose(['content'=>$message, 'title'=>$title]) ->setTo($to) ->setSubject($subject); if($email->send()){ return 'Message has been sent'; } return $email->mailer->adapter->ErrorInfo; }