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

26

—

LowBetter than 43% of packages

Maintenance37

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity47

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

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

[ivantcholakov/codeigniter-phpmailer

A CodeIgniter 3 compatible email-library powered by PHPMailer.

25313.9k](/packages/ivantcholakov-codeigniter-phpmailer)[markguinn/silverstripe-email-helpers

Silverstripe extension containing SMTP mailer class and some other classes for HTML emails

3145.4k1](/packages/markguinn-silverstripe-email-helpers)[msp/smtp

SMTP with PHPMailer

2129.4k](/packages/msp-smtp)[nfephp-org/sped-mail

API para geração e envio dos emails relacionados com o SPED.

1123.7k](/packages/nfephp-org-sped-mail)

PHPackages © 2026

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