1
0
Fork 0
mirror of synced 2025-04-06 07:13:33 +03:00

Correct email, transfer in lowercase

This commit is contained in:
dima-uryvskiy 2020-09-25 12:43:13 +03:00
parent 754e1e8245
commit c8ff13578e

View file

@ -55,10 +55,10 @@ class WC_Retailcrm_Order extends WC_Retailcrm_Abstracts_Data
{
$data = array(
'externalId' => $order->get_id(),
'createdAt' => $order->get_date_created()->date('Y-m-d H:i:s'),
'createdAt' => $order->get_date_created()->date('Y-m-d H:i:s'),
'firstName' => $order->get_shipping_first_name(),
'lastName' => $order->get_shipping_last_name(),
'email' => $order->get_billing_email(),
'email' => strtolower($order->get_billing_email()),
'customerComment' => $order->get_customer_note(),
'phone' => $order->get_billing_phone(),
'countryIso' => $order->get_shipping_country()