Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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();

```