Skip to content

shaqman/yii2-queue-mailer

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

shaqman/yii2-queue-mailer

Background mailer for Yii2 using any queue interface. This extension was tested with yii2 queue extension.

This extension was tested only with swiftmailer extension, though it should work with any compatible mailer extension

Installation

The preferred way to install this extension is through composer.

Either run

php composer.phar require --prefer-dist shaqman/yii2-queue-mailer

or add

"shaqman/yii2-queue-mailer": "*"

Usage

Configure queue component of your application.

You can find the details here: https://github.com/yiisoft/yii2-queue/

Configure \shaqman\mailer\queuemailer\Mailer as your primary mailer.

  'mailer' => [
      'class' => \shaqman\mailer\queuemailer\Mailer::class,
      'queue' => 'queue' // name of queue component, or a valid array configuration for it.
      'syncMailer' => [ // Any valid mailer should work
          'class' => 'yii\swiftmailer\Mailer',
          'useFileTransport' => true,
      ],
  ],

Now you can send your emails as usual.

$message = \Yii::$app->mailer->compose()
  ->setSubject('test subject')
  ->setFrom('[email protected]')
  ->setHtmlBody('test body')
  ->setTo('[email protected]')
  ->send($message);

One small difference should be noted compared to the default send. It now returns an int identifying the queue id that the mail was assigned to. This is to be expected since there is no way to know whether the mail was successfully sent at the time of the command was executed.

About

Background mailer decorator for Yii2

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 100.0%