PreorderBilling: Added ANB invoicing emails from config file

This commit is contained in:
Frank Schubert
2025-04-01 20:56:14 +02:00
parent 686f3d1ed0
commit b4a9d846f3

View File

@@ -466,7 +466,7 @@ class PreorderBillingController extends mfBaseController {
$billing_data["zip"] = trim($netoperator->zip);
$billing_data["city"] = trim($netoperator->city);
$billing_data["country"] = trim($netoperator->country->name);
$billing_data["email"] = trim($netoperator->email);
$billing_data["email"] = trim($netoperator_config["email"]);
$billing_data["uid"] = trim($netoperator->uid);
} else {
die("Unknown billing type $type");
@@ -740,7 +740,7 @@ class PreorderBillingController extends mfBaseController {
"zip" => trim($netoperator->zip),
"city" => trim($netoperator->city),
"country" => trim($netoperator->country->name),
"email" => trim($netoperator->email),
"email" => trim($netoperator_config["email"]),
"uid" => trim($netoperator->uid),
];