yxxx
This commit is contained in:
@@ -10,7 +10,7 @@ error_reporting(E_ALL);
|
||||
$appEnvFromEnv = getenv('APP_ENV') ?: 'prod';
|
||||
$envDir = rtrim(__DIR__, '/\\') . '/' . $appEnvFromEnv;
|
||||
|
||||
foreach (['domaindata.php','settings.php'] as $cfgFile) {
|
||||
foreach (['domaindata.php','settings.php','emailtemplates.php'] as $cfgFile) {
|
||||
$rootPath = __DIR__ . '/' . $cfgFile;
|
||||
$envPath = $envDir . '/' . $cfgFile;
|
||||
|
||||
|
||||
7
config/prod/emailtemplates.php
Normal file
7
config/prod/emailtemplates.php
Normal file
@@ -0,0 +1,7 @@
|
||||
<?php
|
||||
$emailtemplates = [
|
||||
'registration_confirm' => 'Neues Template neue Logik',
|
||||
'registration_welcome' => 'Template 1',
|
||||
'registration_resend_code' => 'template mit block',
|
||||
'password_reset' => 'template mit block',
|
||||
];
|
||||
7
config/staging/emailtemplates.php
Normal file
7
config/staging/emailtemplates.php
Normal file
@@ -0,0 +1,7 @@
|
||||
<?php
|
||||
$emailtemplates = [
|
||||
'registration_confirm' => 'Neues Template neue Logik',
|
||||
'registration_welcome' => 'Template 1',
|
||||
'registration_resend_code' => 'template mit block',
|
||||
'password_reset' => 'template mit block',
|
||||
];
|
||||
Reference in New Issue
Block a user