PHPackages                             app-skeleton/email - 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. app-skeleton/email

ActiveKohana-module

app-skeleton/email
==================

Email module for Kohana based on swiftmailer

014PHP

Since Nov 18Pushed 12y ago1 watchersCompare

[ Source](https://github.com/app-skeleton/email)[ Packagist](https://packagist.org/packages/app-skeleton/email)[ RSS](/packages/app-skeleton-email/feed)WikiDiscussions 3.3/master Synced 4d ago

READMEChangelogDependenciesVersions (2)Used By (0)

Email Module For Kohana 3.x
===========================

[](#email-module-for-kohana-3x)

Factory-based email class. This class is a simple wrapper around [Swiftmailer](http://github.com/swiftmailer/swiftmailer).

Usage
-----

[](#usage)

Create new messages using the `Email::factory($subject, $message, $mime_type)` method.
Add recipients, add sender, send message:

```
$email = Email::factory('Hello, World', 'This is my body, it is nice.')
    ->to('person@example.com')
    ->from('you@example.com', 'My Name')
    ->send();

```

You can also add HTML to your message:

```
$email->message('This is my body, it is nice.', 'text/html');

```

Additional recipients can be added using the `to()`, `cc()`, and `bcc()` methods.

Additional senders can be added using the `from()` and `reply_to()` methods.
If multiple sender addresses are specified, you need to set the actual sender of the message using the `sender()` method.
Set the bounce recipient by using the `return_path()` method.

To access the [Swiftmailer message](http://swiftmailer.org/docs/messages) directly, use the `raw_message()` method.

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

[](#configuration)

Configuration is stored in `config/email.php`. Options are dependant upon transport method used.

Consult the Swiftmailer documentation for options available to each transport.

###  Health Score

21

—

LowBetter than 19% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity43

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

### Community

Maintainers

![](https://www.gravatar.com/avatar/16ee23968209089931c6439441b750be90767059c48cff0da75b631224283b66?d=identicon)[app-skeleton](/maintainers/app-skeleton)

---

Top Contributors

[![tamaspap](https://avatars.githubusercontent.com/u/1059643?v=4)](https://github.com/tamaspap "tamaspap (7 commits)")

### Embed Badge

![Health badge](/badges/app-skeleton-email/health.svg)

```
[![Health](https://phpackages.com/badges/app-skeleton-email/health.svg)](https://phpackages.com/packages/app-skeleton-email)
```

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
