PHPackages                             kisphp/simple-mail - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Mail &amp; Notifications](/categories/mail)
4. /
5. kisphp/simple-mail

ActiveLibrary[Mail &amp; Notifications](/categories/mail)

kisphp/simple-mail
==================

A quick and simple method to send emails

2.0.0(9y ago)01671MITPHPPHP &gt;=5.5.9

Since Mar 12Pushed 6y ago1 watchersCompare

[ Source](https://github.com/kisphp/simple-mail)[ Packagist](https://packagist.org/packages/kisphp/simple-mail)[ RSS](/packages/kisphp-simple-mail/feed)WikiDiscussions master Synced 2mo ago

READMEChangelog (2)Dependencies (3)Versions (5)Used By (0)

Kisphp Simple mailer
====================

[](#kisphp-simple-mailer)

[![Build Status](https://camo.githubusercontent.com/30a9342559cc4aedb97822453a5d905b14894eb23b038f094d43c3e7b480936a/68747470733a2f2f7472617669732d63692e6f72672f6b69737068702f73696d706c652d6d61696c2e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/kisphp/simple-mail)[![codecov.io](https://camo.githubusercontent.com/5d3894ac3313eba28a77f84afc3b37d67e8630d600e2636d3cc8f01b16ebf866/68747470733a2f2f636f6465636f762e696f2f6769746875622f6b69737068702f73696d706c652d6d61696c2f636f7665726167652e7376673f6272616e63683d6d6173746572)](https://codecov.io/github/kisphp/simple-mail?branch=master)

[![Latest Stable Version](https://camo.githubusercontent.com/3b56c10dd459d161aad6a0e9b8074ab3789d0ee594329637985027a5980946ed/68747470733a2f2f706f7365722e707567782e6f72672f6b69737068702f73696d706c652d6d61696c2f762f737461626c65)](https://packagist.org/packages/kisphp/simple-mail)[![Total Downloads](https://camo.githubusercontent.com/0d53e4d6303e33b6d388b98ab4000ca451aba3762b63bd572913f9ad3b6a0251/68747470733a2f2f706f7365722e707567782e6f72672f6b69737068702f73696d706c652d6d61696c2f646f776e6c6f616473)](https://packagist.org/packages/kisphp/simple-mail)[![License](https://camo.githubusercontent.com/4f832ea275cc48c8baf013e3cd5fd8d18b837831f84aebd40f28c4373363956c/68747470733a2f2f706f7365722e707567782e6f72672f6b69737068702f73696d706c652d6d61696c2f6c6963656e7365)](https://packagist.org/packages/kisphp/simple-mail)[![Monthly Downloads](https://camo.githubusercontent.com/b374e9f8822af802c14c6bc4f37051654635b5768689495d39395010a18d5f3e/68747470733a2f2f706f7365722e707567782e6f72672f6b69737068702f73696d706c652d6d61696c2f642f6d6f6e74686c79)](https://packagist.org/packages/kisphp/simple-mail)

Quick send emails with swift mailer for your website with a very simple implementation. By default is configured to send through google.

Installation
------------

[](#installation)

```
composer require kisphp/simple-mail
```

Configuration
-------------

[](#configuration)

If you already use composer into your project, then the required libraries will be automatically included. Other way you'll have to include autoloader into your php file:

```
require_once '/path/to/vendor/autoload.php';
```

First step you need to do, is to create a Configuration class that will implement `Kisphp\Mail\MailConfigInterface;`.

```
