first real commit in standalone repo
This commit is contained in:
31
config/app.example.php
Normal file
31
config/app.example.php
Normal file
@@ -0,0 +1,31 @@
|
||||
<?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,
|
||||
],
|
||||
'sendConfirmationEmail' => true,
|
||||
'sendBackendEmail' => true,
|
||||
'email' => [
|
||||
'mailerClass' => 'CakeContactUs.ContactUsFormSubmissions',
|
||||
'confirmation' => [
|
||||
'enabled' => true,
|
||||
],
|
||||
'backend' => [
|
||||
'enabled' => true,
|
||||
'to' => 'bshipley@hipowered.dev',
|
||||
],
|
||||
],
|
||||
'addIdToRedirect' => true,
|
||||
'redirectUrl' => [
|
||||
'prefix' => 'Admin',
|
||||
'plugin' => 'CakeContactUs',
|
||||
'controller' => 'ContactUsFormSubmissions',
|
||||
'action' => 'view',
|
||||
],
|
||||
],
|
||||
];
|
||||
Reference in New Issue
Block a user