Added support for 'signature default support addres' with user object city mapping.

This commit is contained in:
Konstantin Shalygin 2019-04-18 14:17:51 +07:00
parent e8fa4cbd42
commit e0456f4d67
No known key found for this signature in database
GPG key ID: DAB31F3D3E5BCB69
4 changed files with 26 additions and 8 deletions

View file

@ -49,4 +49,13 @@ $siga_marketing = "Marketing bullshit<br>";
$siga_prefix = "Best regards, ";
$siga_url = "<br>URL";
$siga_postfix = "<br>Some spam";
$siga_support_address_domain = 'example.com';
$siga_support_address_prefix = 'info.';
$siga_support_address_postfix = '';
$siga_support_address_default = "$siga_support_address_prefix" . "global" . "$siga_support_address_postfix" . "@" . "$siga_support_address_domain";
$siga_support_address_array = array(
'boston' => 'Boston',
'de' => 'Delaware',
'ny' => 'New York'
);
?>