$token = 'ТУТ ВАШ API ТОКЕН КОТОРЫЙ МОЖНО ПОЛУЧИТЬ В ЛИЧНОМ КАБИНЕТЕ СЕЛЛЕРА';
$data = array(
'sort' => array(
'cursor' => array(
'limit' => 1000
),
'filter' => array(
'next' => 0
)
)
);
$ch = curl_init('https://suppliers-api.wildberries.ru/api/v3/orders/new'); //
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
'Authorization:' . $token,
'Content-Type:application/json'
));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_HEADER, false);
$res = curl_exec($ch);
curl_close($ch);
$res = json_decode($res, true);
foreach( $res['orders'] as $order ){
$time = $order['createdAt'];
}
$filename = __DIR__ . '/time.txt';
$text = file_get_contents($filename);
if( $time ){
if( $text !== $time ){
$to = 'ТУТ ВАША ПОЧТА';
$subject = 'Новый заказ на WB для МАГАЗИНА';
$message = 'На WB есть новый заказ для МАГАЗИНА.';
$headers = 'From: ТУТ С КАКОЙ ПОЧТЫ БУДУТ ПРИХОДИТЬ ПИСЬМА' . "\r\n" .
'X-Mailer: PHP/' . phpversion();
mail($to, $subject, $message, $headers);
file_put_contents($filename, $time);
}
}