Add country code to mobile number. #465

This commit is contained in:
Korina Cordero 2020-08-17 11:09:35 +00:00
parent d14bb71c77
commit 75ff5bcdbb

View file

@ -975,7 +975,8 @@ class ResqJobOrderHandler implements JobOrderHandlerInterface
}
// send SMS to customer
$phone_number = $obj->getCustomer()->getPhoneMobile();
// prepend country code to number
$phone_number = $this->country_code . $obj->getCustomer()->getPhoneMobile();
if (!empty($phone_number))
$this->sendSMSToCustomer($phone_number);
}