Download the PHP package vaszloy/yii2-email-manager without Composer
On this page you can find all versions of the php package vaszloy/yii2-email-manager. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download vaszloy/yii2-email-manager
More information about vaszloy/yii2-email-manager
Files in vaszloy/yii2-email-manager
Download vaszloy/yii2-email-manager
More information about vaszloy/yii2-email-manager
Files in vaszloy/yii2-email-manager
Please rate this library. Is it a good library?
Informations about the package yii2-email-manager
Email Module
Installation
Simple configuration:
'components' => [
'emailManager' => [
'class' => '\yarcode\email\EmailManager',
'transports' => [
'yiiMailer' => '\yarcode\email\transports\YiiMailer'
],
],
]
Multi transport configuration:
'components' => [
'emailManager' => [
'class' => '\yarcode\email\EmailManager',
'defaultTransport' => 'yiiMailer',
'transports' => [
'yiiMailer' => [
'class' => '\yarcode\email\transports\YiiMailer',
],
'mailGun' => [
'class' => '\yarcode\email\transports\MailGun',
'apiKey' => 'xxx',
'domain' => 'our-domain.net',
],
],
],
]
Add command to the list of the available commands. Put it into console app configuration:
'controllerMap' => [
'email' => '\yarcode\email\commands\EmailCommand',
],
Add email sending daemon into crontab via lockrun or run-one utils:
*/5 * * * * run-one php /your/site/path/yii email/run-spool-daemon
OR, if you will use cboden/ratchet
*/5 * * * * run-one php /your/site/path/yii email/run-loop-daemon
Usage
// obtain component instance
$emailManager = EmailManager::geInstance();
// direct send via default transport
$emailManager->send('[email protected]', '[email protected]', 'test subject', 'test email');
// queue send via default transport
$emailManager->send('[email protected]', '[email protected]', 'test subject', 'test email');
// direct send via selected transport
$emailManager->transports['mailGun']->send('[email protected]', '[email protected]', 'test subject', 'test email');
// use shortcuts
EmailTemplate::findByShortcut('shortcut_name')->queue('[email protected]', ['param1' => 1, 'param2' => 'asd']);All versions of yii2-email-manager with dependencies
PHP Build Version
Package Version
Requires
php Version
>=8.2
yiisoft/yii2 Version ~2.0
mailgun/mailgun-php Version ^v3
php-http/guzzle7-adapter Version ^1.0
yiisoft/yii2 Version ~2.0
mailgun/mailgun-php Version ^v3
php-http/guzzle7-adapter Version ^1.0
The package vaszloy/yii2-email-manager contains the following files
Loading the files please wait ...