Download the PHP package yarcode/yii2-email-manager without Composer
On this page you can find all versions of the php package yarcode/yii2-email-manager. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download yarcode/yii2-email-manager
More information about yarcode/yii2-email-manager
Files in yarcode/yii2-email-manager
Download yarcode/yii2-email-manager
More information about yarcode/yii2-email-manager
Files in yarcode/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
>=5.4.0
yiisoft/yii2 Version ~2.0.4
mailgun/mailgun-php Version ^2.0
yiisoft/yii2-twig Version ~2.0.3
trntv/yii2-aceeditor Version ~2.0
php-http/guzzle6-adapter Version ~1.0
baibaratsky/yii2-serialized-attributes-behavior Version ~1.1
yiisoft/yii2 Version ~2.0.4
mailgun/mailgun-php Version ^2.0
yiisoft/yii2-twig Version ~2.0.3
trntv/yii2-aceeditor Version ~2.0
php-http/guzzle6-adapter Version ~1.0
baibaratsky/yii2-serialized-attributes-behavior Version ~1.1
The package yarcode/yii2-email-manager contains the following files
Loading the files please wait ....