PHP code example of lundalogik / laravel-newsletter-driver
1. Go to this page and download the library: Download lundalogik/laravel-newsletter-driver library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
lundalogik / laravel-newsletter-driver example snippets
'newsletter' => [
'api_key' => env('LIME_NEWSLETTER_API_KEY'),
'user_email' => env('LIME_NEWSLETTER_USER_EMAIL'),
'account' => env('LIME_NEWSLETTER_ACCOUNT'),
'base_url' => env('LIME_NEWSLETTER_BASE_URL', 'https://qa.bwz.se/bedrock/'),
],
'mailers' => [
...
'newsletter' => [
'transport' => 'newsletter',
],
],