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

ActiveSalad-extension[Mail &amp; Notifications](/categories/mail)

salad-dressing/mailer
=====================

SaladStack Mailer extension

1.1.0(1y ago)021MITPHP

Since Sep 4Pushed 1y agoCompare

[ Source](https://github.com/salad-dressings/salad-dressing-mailer)[ Packagist](https://packagist.org/packages/salad-dressing/mailer)[ RSS](/packages/salad-dressing-mailer/feed)WikiDiscussions main Synced 2d ago

READMEChangelog (10)Dependencies (1)Versions (16)Used By (0)

Salad Dressing Mailer
=====================

[](#salad-dressing-mailer)

SaladStack Extension to send mail using PHPMailer

### To Install

[](#to-install)

```
composer require salad-dressing/mailer
```

### To Update

[](#to-update)

```
composer update salad-dressing/mailer
```

### Snapshots

[](#snapshots)

[![salad-dressing/mailer](./snapshot.png)](./snapshot.png)

### Sending plain email

[](#sending-plain-email)

```
use Salad\Dressing\Mailer\Sender;

public function index()
{
    $this->sender = new Sender;
    $this->sender->addRecipient("test@saladstack.com");
    $this->sender->setSubject("SaladStack Email Test");
    $this->sender->setBody("This is a test email.");
    if($this->sender->send()){
      echo "Email Sent!";
    } else {
      echo "Sending failed.";
    }
}
```

### Sending html body email

[](#sending-html-body-email)

```
use Salad\Dressing\Mailer\Sender;

public function index()
{
    $this->sender = new Sender;
    $this->sender->addRecipient("test@saladstack.com");
    $this->sender->setSubject("SaladStack Email Test");
    //adding true on the 2nd params will enable html body
    $this->sender->setBody("This is a test email.", true);
    if($this->sender->send()){
      echo "Email Sent!";
    } else {
      echo "Sending failed.";
    }
}
```

###  Health Score

25

—

LowBetter than 35% of packages

Maintenance33

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity48

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

Every ~0 days

Total

15

Last Release

663d ago

Major Versions

0.0.10 → 1.0.02024-09-04

### Community

Maintainers

![](https://www.gravatar.com/avatar/e58cdc062802186f476bd317a0496b14a5b5c188a283f6ee9195c3b0fc9ecb69?d=identicon)[mrkong.villanueva](/maintainers/mrkong.villanueva)

---

Top Contributors

[![parvillanueva](https://avatars.githubusercontent.com/u/23477795?v=4)](https://github.com/parvillanueva "parvillanueva (1 commits)")

### Embed Badge

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

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

###  Alternatives

[matomo/matomo

Matomo is the leading Free/Libre open analytics platform

21.7k38.9k](/packages/matomo-matomo)[getkirby/cms

The Kirby core

1.5k584.8k474](/packages/getkirby-cms)[ivantcholakov/codeigniter-phpmailer

A CodeIgniter 3 compatible email-library powered by PHPMailer.

25214.3k](/packages/ivantcholakov-codeigniter-phpmailer)[chameleon-system/chameleon-base

The Chameleon System core.

1028.6k5](/packages/chameleon-system-chameleon-base)[sproutcms/cms

Enterprise content management and framework

242.5k4](/packages/sproutcms-cms)

PHPackages © 2026

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