PHPackages                             wepesi/mailer - 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. wepesi/mailer

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

wepesi/mailer
=============

simple php module to help send smtp email using php mail function

v0.1.3(3y ago)12[6 issues](https://github.com/bim-g/wepesi-mailer/issues)Apache-2.0PHPPHP &gt;=7.4

Since Jan 5Pushed 3y ago1 watchersCompare

[ Source](https://github.com/bim-g/wepesi-mailer)[ Packagist](https://packagist.org/packages/wepesi/mailer)[ RSS](/packages/wepesi-mailer/feed)WikiDiscussions master Synced today

READMEChangelog (1)Dependencies (2)Versions (6)Used By (0)

wepesi-mailer
=============

[](#wepesi-mailer)

simple php module to help send email using php mail module *Note*: Its should test on a live server. from localhost is not yet supported.

```
use Wepesi\Mailer\Email;
 use Wepesi\Mailer\smtpConfiguration;

 include_once __DIR__."/../vendor/autoload.php";

 $smtpConfig = (new smtpConfiguration())
     ->smtpServer("localhost")
     ->smtpPort(25)
     ->setUsername("you@example.com")
     ->setPassword("p@ssW0rd")
     ->organization("Wepesi")
     ->generate();
 $email = new Email($smtpConfig);
 $email->from("me@example.com");
 $email->to("you@example.com","wepesi");
 $email->subject("Subject");
 $email->text("Hello World");
 $email->setBCC(["johndoe@example.com","janedoe@example.com"]);
 $email->setCC(["alfa@example.com","beta@example.com"]);
 $result = $email->send();

 if(isset($result['exception'])){
     var_dump("email not sent");
 }
 var_dump($result);
```

###  Health Score

14

—

LowBetter than 1% of packages

Maintenance0

Infrequent updates — may be unmaintained

Popularity4

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity40

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.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

1271d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/3b7536aed6138da14cfe4d2a295017fd44f2997ee86c689e8aa6276080164cfd?d=identicon)[ibmussa](/maintainers/ibmussa)

---

Top Contributors

[![bim-g](https://avatars.githubusercontent.com/u/16068170?v=4)](https://github.com/bim-g "bim-g (9 commits)")

### Embed Badge

![Health badge](/badges/wepesi-mailer/health.svg)

```
[![Health](https://phpackages.com/badges/wepesi-mailer/health.svg)](https://phpackages.com/packages/wepesi-mailer)
```

###  Alternatives

[maize-tech/laravel-email-domain-rule

Laravel Email Domain Rule

612.0k](/packages/maize-tech-laravel-email-domain-rule)[sarfraznawaz2005/noty

Laravel package to incorporate noty flash notifications into laravel.

324.5k](/packages/sarfraznawaz2005-noty)

PHPackages © 2026

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