PHPackages                             mailcct/mailablecct - 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. mailcct/mailablecct

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

mailcct/mailablecct
===================

custom mail

v1.0.0(5y ago)016MITJavaScript

Since Mar 11Pushed 5y ago1 watchersCompare

[ Source](https://github.com/krupalitankcct/mailable)[ Packagist](https://packagist.org/packages/mailcct/mailablecct)[ RSS](/packages/mailcct-mailablecct/feed)WikiDiscussions master Synced 1w ago

READMEChangelog (1)DependenciesVersions (2)Used By (0)

Mailable packages Run bellow command to install

### Installation

[](#installation)

```
composer require mailcct/mailablecct

```

### Migration

[](#migration)

```
php artisan migrate

```

if you send mail in usig this packages added this line in your controller

```
use Mailcct\Mailablecct\Mail\CommonMail;

use Mail;

```

after add this line you can send mail according to pass mailable type and get template data in your db

import your mailable model

```
use Mailcct\Mailablecct\Models\MailTemplate;

```

get data in your db template according to your mailable type using this line

```
// pass mailable type accoding to send mail template

EX. $mail_type = 'order_view';

    $tomail = 'testingtest@yopmail.com';
    $mail_template = MailTemplate::select('id','html_template','subject')->where('mailable_type',$mail_type)->first();

    if(!empty($mail_template)){
        $data['html_template'] = $mail_template['html_template'];
        $data['subject'] = $mail_template['subject'];

        /* send mail  */
        Mail::to($tomail)->send(new CommonMail($data));

        }

```

### Configuration

[](#configuration)

Then run bellow command to publish config and resource files

If you want to change these options, you'll have to publish the `views` file.

```
php artisan vendor:publish --provider="Mailcct\Mailablecct\MailEditServiceProvider" --tag="css"

php artisan vendor:publish --provider="Mailcct\Mailablecct\MailEditServiceProvider" --tag="views"

```

###  Health Score

23

—

LowBetter than 27% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity52

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

Unknown

Total

1

Last Release

1894d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/d2d687f4d593047d76340e9e4173eabbbdeae1a098d2b9ff0e4d18422412b9b2?d=identicon)[ccttank](/maintainers/ccttank)

---

Top Contributors

[![krupalitankcct](https://avatars.githubusercontent.com/u/78092031?v=4)](https://github.com/krupalitankcct "krupalitankcct (40 commits)")

### Embed Badge

![Health badge](/badges/mailcct-mailablecct/health.svg)

```
[![Health](https://phpackages.com/badges/mailcct-mailablecct/health.svg)](https://phpackages.com/packages/mailcct-mailablecct)
```

###  Alternatives

[tijsverkoyen/css-to-inline-styles

CssToInlineStyles is a class that enables you to convert HTML-pages/files into HTML-pages/files with inline styles. This is very useful when you're sending emails.

5.8k505.3M227](/packages/tijsverkoyen-css-to-inline-styles)[minishlink/web-push

Web Push library for PHP

1.9k12.0M53](/packages/minishlink-web-push)[laravel-notification-channels/twilio

Provides Twilio notification channel for Laravel

2587.7M12](/packages/laravel-notification-channels-twilio)[spatie/url-signer

Generate a url with an expiration date and signature to prevent unauthorized access

4422.3M16](/packages/spatie-url-signer)[mattketmo/email-checker

Throwaway email detection library

2742.0M5](/packages/mattketmo-email-checker)[laravel-notification-channels/discord

Laravel notification driver for Discord.

2371.3M11](/packages/laravel-notification-channels-discord)

PHPackages © 2026

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