Appearance
mailing_agent
php
array mailing_agent ( number $limit, number|array $shipmentId [, number|boolean $shipmentIdMax=false] )
Funkcja zwraca dane dotyczące liczby otwarć, kliknięć przez poszczególne przeglądarki, systemy operacyjne dla wysyłki o identyfikatorze $shipmentId (możemy także podać tablice z identyfikatorami) dla obecnie przetwarzanego adresu. Jeśli podamy parametr $shipmentIdMax dane będą zebrane z zakresu od numeru wysyłki $shipmentId do $shipmentIdMax.
Przykład:
php
print_r(mailing_agent(10, 3));
Wynik:
Array ( [open_browser] => Array ( [3] => Array ( [count] => 1 [name] => Firefox [icon] => firefox.png ) ) [open_system] => Array ( [19] => Array ( [count] => 1 [name] => Linux [icon] => linux.png ) ) [open_device] => Array ( [2] => Array ( [count] => 1 [name] => Desktop [icon] => desktop.png ) ) [open_browser_type] => Array ( [Browser] => 1 ) [click_browser_type] => Array ( [unknown] => 1 ) [open_device_type] => Array ( [desktop] => 1 ) [click_device_type] => Array ( ) )