在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称(OpenSource Name):spatie/laravel-newsletter开源软件地址(OpenSource Url):https://github.com/spatie/laravel-newsletter开源编程语言(OpenSource Language):PHP 100.0%开源软件介绍(OpenSource Introduction):Manage newsletters in LaravelThis package provides an easy way to integrate MailChimp with Laravel. Should you find that Mailchimp is too expensive for your use case, consider using Mailcoach instead. Mailcoach is a premium Laravel package that allows you to self host your email lists and campaigns. Support usWe invest a lot of resources into creating best in class open source packages. You can support us by buying one of our paid products. We highly appreciate you sending us a postcard from your hometown, mentioning which of our package(s) you are using. You'll find our address on our contact page. We publish all received postcards on our virtual postcard wall. InstallationYou can install this package via composer using: composer require spatie/laravel-newsletter The package will automatically register itself. To publish the config file to php artisan vendor:publish --provider="Spatie\Newsletter\NewsletterServiceProvider" This will publish a file return [
/*
* The driver to use to interact with MailChimp API.
* You may use "log" or "null" to prevent calling the
* API directly from your environment.
*/
'driver' => env('MAILCHIMP_DRIVER', 'api'),
/*
* The API key of a MailChimp account. You can find yours at
* https://us10.admin.mailchimp.com/account/api-key-popup/.
*/
'apiKey' => env('MAILCHIMP_APIKEY'),
/*
* The listName to use when no listName has been specified in a method.
*/
'defaultListName' => 'subscribers',
/*
* Here you can define properties of the lists.
*/
'lists' => [
/*
* This key is used to identify this list. It can be used
* as the listName parameter provided in the various methods.
*
* You can set it to any string you want and you can add
* as many lists as you want.
*/
'subscribers' => [
/*
* A MailChimp list id. Check the MailChimp docs if you don't know
* how to get this value:
* http://kb.mailchimp.com/lists/managing-subscribers/find-your-list-id.
*/
'id' => env('MAILCHIMP_LIST_ID'),
/*
* The GDPR marketing permissions of this audience.
* You can get a list of your permissions with this command: "php artisan newsletter:permissions"
*/
'marketing_permissions' => [
// 'email' => '2a4819ebc7',
// 'customized_online_advertising' => '4256fc7dc5',
],
],
],
/*
* If you're having trouble with https connections, set this to false.
*/
'ssl' => true,
]; UsageBehind the scenes v3 for the MailChimp API is used. 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 unsubscribingSubscribing an email address can be done like this: use Newsletter;
Newsletter::subscribe('[email protected]'); Let's unsubscribe someone: Newsletter::unsubscribe('[email protected]'); You can pass some merge variables as the second argument: Newsletter::subscribe('[email protected]', ['FNAME'=>'Rince', 'LNAME'=>'Wind']);
You can subscribe someone to a specific list by using the third argument: Newsletter::subscribe('[email protected]', ['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('[email protected]', ['FNAME'=>'Foo', 'LNAME'=>'Bar']); You can subscribe someone to one or more specific group(s)/interest(s) by using the fourth argument: Newsletter::subscribeOrUpdate('[email protected]', ['FNAME'=>'Rince','LNAME'=>'Wind'], 'subscribers', ['interests'=>['interestId'=>true, 'interestId'=>true]]) Simply add You can also unsubscribe someone from a specific list: Newsletter::unsubscribe('[email protected]', 'subscribers'); Deleting subscribersDeleting 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 Here's how to perform a delete: Newsletter::delete('[email protected]'); Deleting subscribers permanentlyDelete all personally identifiable information related to a list member, and remove them from a list. This will make it impossible to re-import the list member. Here's how to perform a permanent delete: Newsletter::deletePermanently('[email protected]'); Getting subscriber infoYou can get information on a subscriber by using the Newsletter::getMember('[email protected]'); 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 There's also a convenience method to check if someone is already subscribed: Newsletter::hasMember('[email protected]'); //returns a boolean In addition to this you can also check if a user is subscribed to your list: Newsletter::isSubscribed('[email protected]'); //returns a boolean Creating a campaignThis the signature of public function createCampaign(
string $fromName,
string $replyTo,
string $subject,
string $html = '',
string $listName = '',
array $options = [],
array $contentOptions = []) Note the campaign will only be created, no emails will be sent out. Working with GDRP marketing permissionsIf you are subject to GDRP, you need to collect your user's consent. This package provides a simple artisan command that outputs a nice table with the names and ID's of your audience's marketing permissions. Get the marketing permissions of your default list: php artisan newsletter:permissions You may also get the permissions of a specific list: php artisan newsletter:permissions subscribers Next, you need to add the permissions to your list's config: 'lists' => [
'subscribers' => [
'id' => env('MAILCHIMP_LIST_ID'),
'marketing_permissions' => [
'email' => '2a4819ebc7',
'customized_online_advertising' => '4256fc7dc5',
],
],
], Now you can easily update a subscriber's marketing permissions. The first argument is the email, the second argument the permission key from the config, the third argument a boolean to enable/disable the permission, and an optional fourth argument is the name of a specific list. Update a subscriber's marketing permission: Newsletter::setMarketingPermission('[email protected]', 'email', true); Handling errorsIf something went wrong you can get the last error with: Newsletter::getLastError(); If you just want to make sure if the last action succeeded you can use: Newsletter::lastActionSucceeded(); //returns a boolean Need something else?If you need more functionality you get an instance of the underlying MailChimp Api with: $api = Newsletter::getApi(); TestingRun the tests with: vendor/bin/phpunit ChangelogPlease see CHANGELOG for more information what has changed recently. ContributingPlease see CONTRIBUTING for details. SecurityIf you discover any security related issues, please email [email protected] instead of using the issue tracker. Credits
LicenseThe MIT License (MIT). Please see License File for more information. |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论