PHPackages                             tadcms/email-template - 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. tadcms/email-template

ActiveLibrary

tadcms/email-template
=====================

Add and manager email template for Laravel

v1.0.2(5y ago)25MITPHPPHP &gt;=7.2

Since Mar 28Pushed 5y ago1 watchersCompare

[ Source](https://github.com/juzaweb/email-template)[ Packagist](https://packagist.org/packages/tadcms/email-template)[ RSS](/packages/tadcms-email-template/feed)WikiDiscussions master Synced 6d ago

READMEChangelog (3)Dependencies (2)Versions (4)Used By (0)

About
-----

[](#about)

Add and manager email template for Laravel

### Features

[](#features)

- Email template table
- Add/Edit/Manager email template
- Mail list send history
- Send mail with cronjob

Install
-------

[](#install)

- Install package

```
composer require tadcms/laravel-email-template

```

- Migration

```
php artisan migrate

```

- Setup The Scheduler: Add command to your server

```
* * * * * cd /path-to-your-project && php artisan schedule:run >> /dev/null 2>&1

```

View more: [Starting The Scheduler](https://laravel.com/docs/6.x/scheduling#introduction)

Usage
-----

[](#usage)

### Make Email Template

[](#make-email-template)

```
use Tadcms\EmailTemplate\Models\EmailTemplate;

EmailTemplate::create([
    'code' => 'test_mail',
    'subject' => 'Send email test for {name}',
    'body' => 'Hello {name},
               This is the test email',
    'params' => [
        'name' => 'Your Name',
    ],
]);

```

### Send email with template

[](#send-email-with-template)

```
use Tadcms\EmailTemplate\EmailService;

EmailService::make()
    ->withTemplate('test_mail')
    ->setEmails('test@example.com')
    ->setParams([
        'name' => 'The Anh',
    ])
    ->send();

```

License
-------

[](#license)

The package is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT).

###  Health Score

23

—

LowBetter than 27% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity7

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity49

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

Total

3

Last Release

1855d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/3169e8a8781068840e9300a57785089da521287dbe0279fc9cc7e8de1c1d95a9?d=identicon)[juzaweb](/maintainers/juzaweb)

---

Top Contributors

[![juzaweb](https://avatars.githubusercontent.com/u/47020363?v=4)](https://github.com/juzaweb "juzaweb (13 commits)")

---

Tags

email-senderemail-templateemail-template-for-laravelemail-template-laravellaravel-email-templatemanager-email-templatelaravel email templateemail template for laravelmanager email template

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/tadcms-email-template/health.svg)

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

PHPackages © 2026

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