|
|
@@ -69,11 +69,18 @@ $customfieldsvaluesObj = Capsule::table('tblcustomfieldsvalues')
|
|
|
->whereIn('fieldid', $customfieldIDs)
|
|
|
->get()
|
|
|
->toArray();
|
|
|
+foreach ($customfieldsvaluesObj as $customfieldsvalue) {
|
|
|
+ $mailname = $customfieldsvalue->value;
|
|
|
+ next($customfieldsvaluesObj);
|
|
|
+ $maildomain = $customfieldsvalue->value;
|
|
|
+ $reservedAddress = $mailname . '@' . $maildomain;
|
|
|
+ array_push($customfieldsvalues, $reservedAddress);
|
|
|
+}
|
|
|
|
|
|
logModuleCall(
|
|
|
'zimbrasingle',
|
|
|
__FUNCTION__,
|
|
|
- $hostingIDs,
|
|
|
+ $customfieldsvalues,
|
|
|
'debug',
|
|
|
$customfieldsvaluesObj
|
|
|
);
|