PHPackages                             yunusasuroglu/bulk-mailler - 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. yunusasuroglu/bulk-mailler

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

yunusasuroglu/bulk-mailler
==========================

Bulk email sending package for Laravel

1.0.0(1y ago)1112MITPHPPHP ^8.0

Since Dec 12Pushed 1y ago1 watchersCompare

[ Source](https://github.com/yunusasuroglu/bulk-mailler)[ Packagist](https://packagist.org/packages/yunusasuroglu/bulk-mailler)[ RSS](/packages/yunusasuroglu-bulk-mailler/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependenciesVersions (2)Used By (0)

Bulk Emailler
=============

[](#bulk-emailler)

Bulk Emails is a package developed for Laravel that makes sending bulk emails easy. With this package, you can send emails to multiple recipients quickly and securely. The package is customizable and easily integrated with a simple structure.

### Version: 1.0

[](#version-10)

This first version offers basic bulk email sending functionality.

Package Installation
--------------------

[](#package-installation)

Run the following Composer command to include your package in the project:

```
composer require yunusasuroglu/bulk-emailler
```

View Create
-----------

[](#view-create)

Create a blade for Email Template, you can also do this manually:

```
mkdir -p resources/views/emails
touch resources/views/emails/bulk-email.blade.php
```

Controller Create
-----------------

[](#controller-create)

This part is given as an example, you can shape it according to your own project:

```
php artisan make:controller BulkEmailController
```

```
