PHPackages                             dimadin/simple-email-queue - 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. [Queues &amp; Workers](/categories/queues)
4. /
5. dimadin/simple-email-queue

ActiveWordpress-plugin[Queues &amp; Workers](/categories/queues)

dimadin/simple-email-queue
==========================

Put email in queue and send it one by one, by limits.

1.3(7y ago)572GPL-2.0-or-laterPHPPHP &gt;=5.4

Since Oct 12Pushed 7y ago1 watchersCompare

[ Source](https://github.com/dimadin/simple-email-queue)[ Packagist](https://packagist.org/packages/dimadin/simple-email-queue)[ Docs](https://milandinic.com/wordpress/plugins/simple-email-queue/)[ RSS](/packages/dimadin-simple-email-queue/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependencies (3)Versions (5)Used By (0)

Simple Email Queue
==================

[](#simple-email-queue)

[Plugin homepage](https://milandinic.com/wordpress/plugins/simple-email-queue/) | [Plugin author](https://milandinic.com/) | [Plus Version](https://shop.milandinic.com/downloads/simple-email-queue-plus/)

Simple Email Queue is a WordPress plugin that is used to pass restrictions set by your host on number of sent emails in given period.

This basic free version is only useful for developers that can extend it and use it in their code. If you want to use it in full capacity, consider getting [plus version](https://shop.milandinic.com/downloads/simple-email-queue-plus/).

Usage
-----

[](#usage)

First, you need to set what is maximum number of emails that can be sent in a given period. By default, it sends 10 emails in 6 minutes. This means that if you want to send 15 emails in 6 minutes, only 10 emails are sent while rest 5 emails are put in queue and sent in the next period, after 6th minute has passed.

You can change this limits by using filters from you code. Filter `simple_email_queue_max` is used to set maximum number of emails that are sent in period. It expects positive integer to be passed.

```
add_filter( 'simple_email_queue_max', function( $max ) {
	return 20;
} );
```

To change period length, you can use filter `simple_email_queue_interval`. It also expects positive integer to be passed but please take care that this number is of seconds, not minutes (for example, if your period is 30 minutes, you would pass `1800`).

```
add_filter( 'simple_email_queue_interval', function( $interval ) {
	return 10 * MINUTE_IN_SECONDS;
} );
```

Different hosts use different limits. Please consult your host's documentation or support to find this out.

If you want user interface in your admin area, use [plus version](https://shop.milandinic.com/downloads/simple-email-queue-plus/).

To use this limits, you need to use function `simple_email_queue_add()` instead of built-in function `wp_mail()`. Both accept same parameters. Emails that are sent using `wp_mail()` function are not sent using queue and are not counted for limits. If you want that all emails are sent using queue, even those sent using `wp_mail()` function, use [plus version](https://shop.milandinic.com/downloads/simple-email-queue-plus/).

###  Health Score

28

—

LowBetter than 54% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity10

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity61

Established project with proven stability

 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 ~423 days

Total

4

Last Release

2601d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/54c4bd393dafccafaf09bf6441bbd933db30b4d4fd153211f79636e8838cdac5?d=identicon)[dimadin](/maintainers/dimadin)

---

Top Contributors

[![dimadin](https://avatars.githubusercontent.com/u/2678421?v=4)](https://github.com/dimadin "dimadin (25 commits)")

### Embed Badge

![Health badge](/badges/dimadin-simple-email-queue/health.svg)

```
[![Health](https://phpackages.com/badges/dimadin-simple-email-queue/health.svg)](https://phpackages.com/packages/dimadin-simple-email-queue)
```

###  Alternatives

[league/geotools

Geo-related tools PHP 7.3+ library

1.4k5.3M26](/packages/league-geotools)[humanmade/cavalcade

A better wp-cron. Horizontally scalable, works perfectly with multisite.

538286.9k4](/packages/humanmade-cavalcade)[react/async

Async utilities and fibers for ReactPHP

2228.8M171](/packages/react-async)[react/promise-stream

The missing link between Promise-land and Stream-land for ReactPHP

11512.9M45](/packages/react-promise-stream)[illuminate/bus

The Illuminate Bus package.

6043.8M409](/packages/illuminate-bus)[google/cloud-pubsub

Cloud PubSub Client for PHP

9017.1M63](/packages/google-cloud-pubsub)

PHPackages © 2026

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