Skip to content

Commit

Permalink
Ensure there is no form by default in config (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanmitchell authored Sep 20, 2023
1 parent d776338 commit f62c355
Showing 1 changed file with 1 addition and 73 deletions.
74 changes: 1 addition & 73 deletions config/campaign-monitor.php
Original file line number Diff line number Diff line change
Expand Up @@ -81,77 +81,5 @@
/*
* The form submissions to add to your Campaign Monitor lists
*/
'forms' => [
[
/*
* Handle of the form to listen for
*/
'form' => null,

/*
* A Campaign Monitor List ID.
*
*/
'list_id' => null,

/*
* Set to `true` to require consent before subscribing someone
* Default: `true`
*/
'check_consent' => true,

/*
* Field name used to check for consent.
* Default: 'consent'
*/
'consent_field' => 'consent',

/*
* Set to `true` to require consent before SMS subscribing someone
* Default: `true`
*/
'check_consent_sms' => true,

/*
* Field name used to check for consent.
* Default: 'consent_sms'
*/
'consent_field_sms' => 'consent_sms',

/*
* Store information about your contacts with custom fields.
*/
'custom_fields' => [
// [
// /*
// * The Campaign Monitor key
// */
// 'key'=> null,

// /*
// * Blueprint field name to use for the merge field
// */
// 'field_name' => null,
// ],
],

/*
* Field that contains the mobile number
* Default: 'mobile'
*/
'mobile_field' => 'mobile',

/*
* Field that contains the name
* Default: 'name'
*/
'name_field' => 'name',

/*
* Field that contains the primary email address
* Default: 'email'
*/
'primary_email_field' => 'email',
],
],
'forms' => [],
];

0 comments on commit f62c355

Please sign in to comment.