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 1mo ago

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 2% of packages

Maintenance0

Infrequent updates — may be unmaintained

Popularity4

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity39

Early-stage or recently created project

 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

1223d 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

[tijsverkoyen/css-to-inline-styles

CssToInlineStyles is a class that enables you to convert HTML-pages/files into HTML-pages/files with inline styles. This is very useful when you're sending emails.

5.8k505.3M227](/packages/tijsverkoyen-css-to-inline-styles)[minishlink/web-push

Web Push library for PHP

1.9k12.0M53](/packages/minishlink-web-push)[laravel-notification-channels/twilio

Provides Twilio notification channel for Laravel

2587.7M12](/packages/laravel-notification-channels-twilio)[spatie/url-signer

Generate a url with an expiration date and signature to prevent unauthorized access

4422.3M16](/packages/spatie-url-signer)[mattketmo/email-checker

Throwaway email detection library

2742.0M5](/packages/mattketmo-email-checker)[laravel-notification-channels/discord

Laravel notification driver for Discord.

2371.3M11](/packages/laravel-notification-channels-discord)

PHPackages © 2026

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