|
|
@@ -70,10 +70,10 @@ $customfieldsvaluesObj = Capsule::table('tblcustomfieldsvalues')
|
|
|
->get()
|
|
|
->toArray();
|
|
|
$i = 0;
|
|
|
-while ($i < count($customfieldIDsObj)) {
|
|
|
- $mailname = $customfieldIDsObj[$i]->value;
|
|
|
+while ($i < count($customfieldsvaluesObj)) {
|
|
|
+ $mailname = $customfieldsvaluesObj[$i]->value;
|
|
|
$i++;
|
|
|
- $maildomain = $customfieldsvalue[$i]->value;
|
|
|
+ $maildomain = $customfieldsvaluesObj[$i]->value;
|
|
|
$reservedAddress = $mailname . '@' . $maildomain;
|
|
|
array_push($customfieldsvalues, $reservedAddress);
|
|
|
}
|