mirror of
https://github.com/prurigro/hypothetical.git
synced 2024-11-10 11:26:39 -05:00
65 lines
1.9 KiB
PHP
65 lines
1.9 KiB
PHP
|
<?php
|
||
|
|
||
|
return [
|
||
|
|
||
|
'mailChimp' => [
|
||
|
|
||
|
/*
|
||
|
* The api key of a MailChimp account. You can find yours here:
|
||
|
* https://us10.admin.mailchimp.com/account/api-key-popup/
|
||
|
*/
|
||
|
'apiKey' => env('MAILCHIMP_APIKEY'),
|
||
|
|
||
|
/*
|
||
|
* Here you can define properties of the lists you want to
|
||
|
* send campaigns.
|
||
|
*/
|
||
|
'lists' => [
|
||
|
|
||
|
/*
|
||
|
* This key is used to identify this list. It can be used
|
||
|
* in the various methods provided by this package.
|
||
|
*
|
||
|
* You can set it to any string you want and you can add
|
||
|
* as many lists as you want.
|
||
|
*/
|
||
|
'subscribers' => [
|
||
|
|
||
|
/*
|
||
|
* A mail chimp 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_LISTID'),
|
||
|
|
||
|
/*
|
||
|
* These values will be used when creating a new campaign.
|
||
|
*/
|
||
|
'createCampaign' => [
|
||
|
'fromEmail' => '',
|
||
|
'fromName' => '',
|
||
|
'toName' => '',
|
||
|
],
|
||
|
|
||
|
/*
|
||
|
* These values will be used when subscribing to a list.
|
||
|
*/
|
||
|
'subscribe' => [
|
||
|
'emailType' => 'html',
|
||
|
'requireDoubleOptin' => false,
|
||
|
'updateExistingUser' => false,
|
||
|
],
|
||
|
|
||
|
/*
|
||
|
* These values will be used when unsubscribing from a list.
|
||
|
*/
|
||
|
'unsubscribe' => [
|
||
|
'deletePermanently' => false,
|
||
|
'sendGoodbyeEmail' => false,
|
||
|
'sendUnsubscribeEmail' => false,
|
||
|
],
|
||
|
],
|
||
|
],
|
||
|
],
|
||
|
];
|