31 lines
1012 B
PHP
31 lines
1012 B
PHP
<?php
|
|
// The following configs can be globally configured, copy the array content over to your ROOT/config
|
|
|
|
return [
|
|
'ContactUs' => [
|
|
'fields' => [
|
|
'subject' => true,
|
|
'email' => true,
|
|
'captcha' => true,
|
|
],
|
|
'clientIpHeader' => '',
|
|
'email' => [
|
|
'mailerClass' => 'CakeContactUs.ContactUsFormSubmissions',
|
|
'confirmation' => true, // true or false
|
|
'backend' => [ // array with enabled and the to/cc/bcc/ fields as strings or arrays
|
|
'enabled' => true,
|
|
'to' => 'bshipley@hipowered.dev',
|
|
'cc' => '', // email string or array of emails
|
|
'bcc' => '', // email string or array of emails
|
|
],
|
|
],
|
|
'addIdToRedirect' => true,
|
|
'redirectUrl' => [
|
|
'prefix' => 'Admin',
|
|
'plugin' => 'CakeContactUs',
|
|
'controller' => 'ContactUsFormSubmissions',
|
|
'action' => 'view',
|
|
],
|
|
],
|
|
];
|