PHPackages                             maatify/cron-email - 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. maatify/cron-email

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

maatify/cron-email
==================

PHP library for Cron Email handler, known by our team

5.0.1(9mo ago)01571MITPHP

Since Jul 26Pushed 9mo ago1 watchersCompare

[ Source](https://github.com/Maatify/CronEmail)[ Packagist](https://packagist.org/packages/maatify/cron-email)[ Docs](https://github.com/Maatify/)[ RSS](/packages/maatify-cron-email/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (8)Dependencies (9)Versions (9)Used By (1)

[![Current version](https://camo.githubusercontent.com/756029e55244a6ba6d9cb6d416972321869dc1f214ce0e4060ae15d107d5e8e2/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6d6161746966792f63726f6e2d656d61696c)](https://packagist.org/packages/maatify/cron-email)[![Packagist PHP Version Support](https://camo.githubusercontent.com/125d5328218358775351b8c4931c8d7b3d517e22c476a5554ddda6b48270069e/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f7068702d762f6d6161746966792f63726f6e2d656d61696c)](https://packagist.org/packages/maatify/cron-email)[![Monthly Downloads](https://camo.githubusercontent.com/b25247f8d893391dc3167568ba7207304bd63cecae88b12af7e6998e34d1facf/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f646d2f6d6161746966792f63726f6e2d656d61696c)](https://packagist.org/packages/maatify/routee/cron-email)[![Total Downloads](https://camo.githubusercontent.com/02e81501ce43aaa47eaf047811dd29c8cd47bbdec4c3f21493bde838f39cc9cd/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6d6161746966792f63726f6e2d656d61696c)](https://packagist.org/packages/maatify/routee/cron-email)[![Stars](https://camo.githubusercontent.com/38e057431f3fdb0e0d5a1877121f0e30baa2fc2cb3f40bf0373ed11b1d595142/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f73746172732f6d6161746966792f63726f6e2d656d61696c)](https://github.com/maatify/CronEmail/stargazers)

Installation
============

[](#installation)

```
composer require maatify/cron-email
```

Database Structure
------------------

[](#database-structure)

```
--
-- Database: `maatify`
--

-- --------------------------------------------------------

--
-- Table structure for table `cron_email`
--

CREATE TABLE `cron_email` (
      `cron_id` int(11) NOT NULL,
      `type_id` int(11) NOT NULL DEFAULT '1' COMMENT '1=messge; 2=confirm; 3=promotion',
      `ct_id` int(11) NOT NULL DEFAULT '0',
      `name` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
      `email` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
      `message` mediumtext COLLATE utf8mb4_unicode_ci,
      `subject` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
      `record_time` datetime NOT NULL DEFAULT '1900-01-01 00:00:00',
      `status` tinyint(1) NOT NULL DEFAULT '0',
      `sent_time` datetime NOT NULL DEFAULT '1900-01-01 00:00:00'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------

--
-- Table structure for table `cron_email_block`
--

CREATE TABLE `cron_email_block` (
  `block_id` int NOT NULL,
  `ct_id` int NOT NULL DEFAULT '0',
  `email` varchar(256) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '',
  `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `time` datetime NOT NULL DEFAULT '1970-01-01 00:00:01',
  `admin_id` int NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `cron_email_off`
--

CREATE TABLE `cron_email_off` (
  `off_id` int NOT NULL,
  `ct_id` int NOT NULL DEFAULT '0',
  `email` varchar(256) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '',
  `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `time` datetime NOT NULL DEFAULT '1970-01-01 00:00:01',
  `admin_id` int NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Indexes for dumped tables
--

--
-- Indexes for table `cron_email`
--
ALTER TABLE `cron_email`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `cron_email_block`
--
ALTER TABLE `cron_email_block`
  ADD PRIMARY KEY (`block_id`);

--
-- Indexes for table `cron_email_off`
--
ALTER TABLE `cron_email_off`
  ADD PRIMARY KEY (`off_id`);

--
-- AUTO_INCREMENT for dumped tables
--

--
-- AUTO_INCREMENT for table `cron_email`
--
ALTER TABLE `cron_email`
  MODIFY `id` int NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `cron_email_block`
--
ALTER TABLE `cron_email_block`
  MODIFY `block_id` int NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `cron_email_off`
--
ALTER TABLE `cron_email_off`
  MODIFY `off_id` int NOT NULL AUTO_INCREMENT;
COMMIT;
```

###  Health Score

32

—

LowBetter than 72% of packages

Maintenance58

Moderate activity, may be stable

Popularity10

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity45

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

Recently: every ~46 days

Total

8

Last Release

279d ago

Major Versions

1.3.0002 → 2.0.00012025-02-08

2.0.0002 → 3.0.02025-05-19

3.0.0 → 5.0.12025-08-10

PHP version history (2 changes)1.0.029PHP &gt;=8.0

1.3.0001PHP &gt;=8.2

### Community

Maintainers

![](https://www.gravatar.com/avatar/1a885a0810f2762586520ab284c9019aaf0b650b53cdf2a6c13ea10931bb7795?d=identicon)[Maatify](/maintainers/Maatify)

---

Top Contributors

[![megyptm](https://avatars.githubusercontent.com/u/33574895?v=4)](https://github.com/megyptm "megyptm (43 commits)")

---

Tags

phpemailcronhandlermaatify.devCron Email handler

### Embed Badge

![Health badge](/badges/maatify-cron-email/health.svg)

```
[![Health](https://phpackages.com/badges/maatify-cron-email/health.svg)](https://phpackages.com/packages/maatify-cron-email)
```

###  Alternatives

[henrique-borba/php-sieve-manager

A modern (started in 2022) PHP library for the ManageSieve protocol (RFC5804) to create/edit Sieve scripts (RFC5228). Used by Cypht Webmail.

23125.7k2](/packages/henrique-borba-php-sieve-manager)[hafael/azure-mailer-driver

Supercharge your Laravel or Symfony app with Microsoft Azure Communication Services (ACS)! Effortlessly add email, chat, voice, video, and telephony-over-IP for next-level communication. 🚀

14109.2k](/packages/hafael-azure-mailer-driver)[naif/php-cpanel-email

Manage cPanel Email Addresses

211.3k](/packages/naif-php-cpanel-email)

PHPackages © 2026

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