https://github.com/compolomus/kmail
Light PHP mailer
https://github.com/compolomus/kmail
kmail mail mailer php7
Last synced: 11 months ago
JSON representation
Light PHP mailer
- Host: GitHub
- URL: https://github.com/compolomus/kmail
- Owner: Compolomus
- License: gpl-3.0
- Created: 2017-04-23T22:22:31.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-06-26T21:18:46.000Z (about 9 years ago)
- Last Synced: 2025-05-17T10:40:33.694Z (about 1 year ago)
- Topics: kmail, mail, mailer, php7
- Language: PHP
- Homepage:
- Size: 21.5 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Compolom Tools Kmail
[](https://www.gnu.org/licenses/gpl-3.0-standalone.html)
[](https://scrutinizer-ci.com/g/Compolomus/kmail/?branch=master)
[](https://codeclimate.com/github/Compolomus/kmail)
[](https://insight.sensiolabs.com/projects/d8ecc6e5-c5b5-45d8-b0e4-fe9ad663ff74)
[](https://packagist.org/packages/compolomus/kmail)
## Установка:
composer require compolomus/kmail
## Применение:
```php
use Compolomus\Kmail;
$test = new KMail('Test text');
$test
->addAdress('test@mail.ru')
->addAdress('test@gmail.com')
->addFile('class.php', file_get_contents(__FILE__))
->setSubject('Test mail')
->send();
$test->debug();
```