├── .env.example ├── .gitignore ├── .travis.yml ├── README.md ├── composer.json ├── composer.lock ├── phpunit.xml.dist ├── src ├── BatchMessage.php ├── EmailAddress.php ├── Mailer.php └── Message.php └── tests ├── BatchMessageTest.php ├── EmailAddressTest.php ├── MailerTest.php ├── MessageTest.php ├── TestCase.php ├── bootstrap.php └── mail ├── example.php └── layouts └── html.php /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boundstate/yii2-mailgun/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | vendor/ 3 | .env 4 | .phpunit.result.cache -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boundstate/yii2-mailgun/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boundstate/yii2-mailgun/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boundstate/yii2-mailgun/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boundstate/yii2-mailgun/HEAD/composer.lock -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boundstate/yii2-mailgun/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/BatchMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boundstate/yii2-mailgun/HEAD/src/BatchMessage.php -------------------------------------------------------------------------------- /src/EmailAddress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boundstate/yii2-mailgun/HEAD/src/EmailAddress.php -------------------------------------------------------------------------------- /src/Mailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boundstate/yii2-mailgun/HEAD/src/Mailer.php -------------------------------------------------------------------------------- /src/Message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boundstate/yii2-mailgun/HEAD/src/Message.php -------------------------------------------------------------------------------- /tests/BatchMessageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boundstate/yii2-mailgun/HEAD/tests/BatchMessageTest.php -------------------------------------------------------------------------------- /tests/EmailAddressTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boundstate/yii2-mailgun/HEAD/tests/EmailAddressTest.php -------------------------------------------------------------------------------- /tests/MailerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boundstate/yii2-mailgun/HEAD/tests/MailerTest.php -------------------------------------------------------------------------------- /tests/MessageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boundstate/yii2-mailgun/HEAD/tests/MessageTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boundstate/yii2-mailgun/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boundstate/yii2-mailgun/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/mail/example.php: -------------------------------------------------------------------------------- 1 |
Hi = $name ?>!
-------------------------------------------------------------------------------- /tests/mail/layouts/html.php: -------------------------------------------------------------------------------- 1 | = $content ?> --------------------------------------------------------------------------------