Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/compolomus/kmail
Light PHP mailer
https://github.com/compolomus/kmail
kmail mail mailer php7
Last synced: about 2 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 (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-06-26T21:18:46.000Z (over 7 years ago)
- Last Synced: 2024-10-13T12:25:41.272Z (3 months ago)
- Topics: kmail, mail, mailer, php7
- Language: PHP
- Homepage:
- Size: 21.5 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Compolom Tools Kmail
[![License](https://img.shields.io/badge/license-GPL%20v.3-blue.svg?style=plastic)](https://www.gnu.org/licenses/gpl-3.0-standalone.html)
[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/Compolomus/kmail/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/Compolomus/kmail/?branch=master)
[![Code Climate](https://codeclimate.com/github/Compolomus/kmail/badges/gpa.svg)](https://codeclimate.com/github/Compolomus/kmail)
[![SensioLabsInsight](https://insight.sensiolabs.com/projects/d8ecc6e5-c5b5-45d8-b0e4-fe9ad663ff74/mini.png)](https://insight.sensiolabs.com/projects/d8ecc6e5-c5b5-45d8-b0e4-fe9ad663ff74)
[![Downloads](https://poser.pugx.org/compolomus/kmail/downloads)](https://packagist.org/packages/compolomus/kmail)## Установка:
composer require compolomus/kmail
## Применение:
```php
use Compolomus\Kmail;
$test = new KMail('Test text');
$test
->addAdress('[email protected]')
->addAdress('[email protected]')
->addFile('class.php', file_get_contents(__FILE__))
->setSubject('Test mail')
->send();
$test->debug();```