dansmaculotte/laravel-newsletter
Composer 安装命令:
composer require dansmaculotte/laravel-newsletter
包简介
Manage newsletters in Laravel
README 文档
README
This package is a fork from spatie/laravel-newsletter. It provides an easy way to integrate different email services with Laravel.
There are 2 drivers available:
There is also and log and null driver for testing and debug purpose.
Installation
You can install this package via composer using:
composer require dansmaculotte/laravel-newsletter
The package will automatically register itself.
To publish the config file to config/newsletter.php run:
php artisan vendor:publish --provider="DansMaCulotte\Newsletter\NewsletterServiceProvider"
This will publish a file newsletter.php in your config directory.
Finally, install the email service package needed:
- Mailchimp
composer require drewm/mailchimp-api
- Mailjet
composer require mailjet/mailjet-apiv3-php
Usage
Configure your mail template driver and credentials in config/newsletter.php.
After you've installed the package and filled in the values in the config-file working with this package will be a breeze. All the following examples use the facade. Don't forget to import it at the top of your file.
use Newsletter;
Subscribing, updating and unsubscribing
Subscribing an email address can be done like this:
use Newsletter; Newsletter::subscribe('rincewind@discworld.com');
Add add email address to list but excluded from marketing emails
use Newsletter; Newsletter::addMember('rincewind@discworld.com');
Let's unsubscribe someone:
Newsletter::unsubscribe('the.luggage@discworld.com');
You can pass options as the second argument:
Newsletter::subscribe('rincewind@discworld.com', ['FNAME' => 'Rince', 'LNAME' => 'Wind']);
You can subscribe someone to a specific list by using the third argument:
Newsletter::subscribe('rincewind@discworld.com', ['FNAME' => 'Rince', 'LNAME' => 'Wind'], 'subscribers');
That third argument is the name of a list you configured in the config file.
You can also subscribe and/or update someone. The person will be subscribed or updated if he/she is already subscribed:
Newsletter::subscribeOrUpdate('rincewind@discworld.com', ['FNAME' => 'Foo', 'lastname' => 'Bar']);
You can also unsubscribe someone from a specific list:
Newsletter::unsubscribe('rincewind@discworld.com', 'subscribers');
Deleting subscribers
Deleting is not the same as unsubscribing. Unlike unsubscribing, deleting a member will result in the loss of all history (add/opt-in/edits) as well as removing them from the list. In most cases you want to use unsubscribe instead of delete.
Here's how to perform a delete:
Newsletter::delete('rincewind@discworld.com');
Getting subscriber info
You can get information on a subscriber by using the getMember function:
Newsletter::getMember('lord.vetinari@discworld.com');
This will return an array with information on the subscriber. If there's no one subscribed with that
e-mail address the function will return false
There's also a convenience method to check if someone is already subscribed:
Newsletter::hasMember('nanny.ogg@discworld.com'); //returns a boolean
In addition to this you can also check if a user is subscribed to your list:
Newsletter::isSubscribed('lord.vetinari@discworld.com'); //returns a boolean
Handling errors
If something went wrong you can get the last error with:
Newsletter::getLastError();
Need something else?
If you need more functionality you get an instance of the underlying Api with:
$api = Newsletter::getApi();
Mailjet notes
Connection timeouts may occur when using mailjet, as described
here. You can
configure the value you want with configuration key
mailjet.connection_timeout, itself using environment variable
MJ_CONNECTION_TIMEOUT.
Testing
Run the tests with:
vendor/bin/phpunit
Changelog
Please see CHANGELOG for more information what has changed recently.
Contributing
Please see CONTRIBUTING for details.
License
The MIT License (MIT). Please see License File for more information.
dansmaculotte/laravel-newsletter 适用场景与选型建议
dansmaculotte/laravel-newsletter 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 2.69k 次下载、GitHub Stars 达 0, 最近一次更新时间为 2019 年 08 月 12 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「mailchimp」 「newsletter」 「laravel」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 dansmaculotte/laravel-newsletter 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 dansmaculotte/laravel-newsletter 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 dansmaculotte/laravel-newsletter 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
MailChimp OAuth 2.0 Client Provider for The PHP League OAuth2-Client
The Automated Provision of Email Services (APES) module will allow you to set up an automated sync mechanism between the SilverStripe Member DataObject and MailChimp.
Sendrill DB
The Newsletter Module provides the newsletter features to manage newsletters and mailing lists.
A very minimal Mailchimp integration for Symfony
Custom form builder for OctoberCMS
统计信息
- 总下载量: 2.69k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 4
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2019-08-12