All Projects → spatie → Laravel Email Campaigns

spatie / Laravel Email Campaigns

Licence: mit
Send email campaigns using Laravel

Projects that are alternatives of or similar to Laravel Email Campaigns

Laravel Mail View
Preview Laravel Mailables and notifications in your browser.
Stars: ✭ 41 (-84.05%)
Mutual labels:  laravel, email
Grouparoo
🦘 The Grouparoo Monorepo - open source customer data sync framework
Stars: ✭ 334 (+29.96%)
Mutual labels:  marketing, email
Laravel Postmark
A Postmark adapter for Laravel
Stars: ✭ 143 (-44.36%)
Mutual labels:  laravel, email
Beautymail
Send beautiful HTML emails with Laravel
Stars: ✭ 923 (+259.14%)
Mutual labels:  laravel, email
Nova Custom Email Sender
A Laravel Nova tool that sends ad-hoc email messages from the dashboard.
Stars: ✭ 62 (-75.88%)
Mutual labels:  laravel, email
Footprints
🐾 A simple registration attribution tracking solution for Laravel (UTM Parameters and Referrers)
Stars: ✭ 127 (-50.58%)
Mutual labels:  laravel, marketing
Wagonwheel
Offer an online version of your Laravel emails to users.
Stars: ✭ 224 (-12.84%)
Mutual labels:  laravel, email
smf-spf
It's a lightweight, fast and reliable Sendmail milter that implements the Sender Policy Framework
Stars: ✭ 12 (-95.33%)
Mutual labels:  email
ecommercetools
EcommerceTools is a Python data science toolkit for ecommerce, marketing science, and technical SEO analysis and modelling and was created by Matt Clarke.
Stars: ✭ 41 (-84.05%)
Mutual labels:  marketing
laravel-mjml
Laravel MJML offers support for rendering MJML syntax into in-line HTML that can be sent within mails.
Stars: ✭ 26 (-89.88%)
Mutual labels:  email
ProtonClient
An unofficial desktop client for ProtonMail done with electron nativefier
Stars: ✭ 50 (-80.54%)
Mutual labels:  email
python-automated-bulk-whatsapp-messages
It is a python script to send automated bulk WhatsApp messages to multiple recipients from an excel sheet at once.
Stars: ✭ 56 (-78.21%)
Mutual labels:  marketing
website-change-monitor
Monitor a website and get email and Slack notifications when specific changes are detected
Stars: ✭ 104 (-59.53%)
Mutual labels:  email
Copper
Copper mail : comprehensive email solution which can be readily deployed without complex configurations.
Stars: ✭ 12 (-95.33%)
Mutual labels:  email
ngx-linkifyjs
Angular V8 wrapper for linkifyjs - library for finding links in plain text and converting them to HTML <a> tags via linkifyjs
Stars: ✭ 40 (-84.44%)
Mutual labels:  email
fx-private-relay-add-on
Companion add-on for Firefox Relay. Keep your email safe from hackers and trackers. Make an email alias with one click, and keep your address to yourself.
Stars: ✭ 24 (-90.66%)
Mutual labels:  email
Notqmail
Collaborative open-source successor to qmail
Stars: ✭ 255 (-0.78%)
Mutual labels:  email
imapx
A cross-platform IMAP library for .NET, supporting .Net 2.0 - 4.5, Mono and Windows Phone
Stars: ✭ 28 (-89.11%)
Mutual labels:  email
amazon-workmail-lambda-templates
Serverless applications for Amazon WorkMail.
Stars: ✭ 17 (-93.39%)
Mutual labels:  email
ioBroker.email
Send emails from ioBroker
Stars: ✭ 15 (-94.16%)
Mutual labels:  email

THIS PACKAGE IS STILL IN DEVELOPMENT, DO NOT USE YET

Send email campaigns using Laravel

Latest Version on Packagist Build Status Quality Score StyleCI Total Downloads

This package allows you to easily send out email campaigns to a list of subscribers.

Let's take a quick look at how the package can be used. First, you must create an email list:

$emailList = EmailList::create('newsletter subscribers');

Next, you can subscribe some people to a list. There's also support for double opt-in subscriptions

$emailList->subscribe('[email protected]');
$emailList->subscribe('[email protected]');

You can send an email to all those subscribed to the list.

Campaign::create()
    ->subject('test')
    ->content($html)
    ->trackOpens()
    ->trackClicks()
    ->to($emailList)
    ->send();

After your campaign is sent, you can view some interesting statistics.

Documention

You can view all documentation on our dedicated documentation site.

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security

If you discover any security related issues, please email [email protected] instead of using the issue tracker.

Postcardware

You're free to use this package, but if it makes it to your production environment we highly appreciate you sending us a postcard from your hometown, mentioning which of our package(s) you are using.

Our address is: Spatie, Samberstraat 69D, 2060 Antwerp, Belgium.

We publish all received postcards on our company website.

Credits

Support us

Spatie is a webdesign agency based in Antwerp, Belgium. You'll find an overview of all our open source projects on our website.

Does your business depend on our contributions? Reach out and support us on Patreon. All pledges will be dedicated to allocating workforce on maintenance and new awesome stuff.

License

The MIT License (MIT). Please see License File for more information.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].