Seu carrinho de compras está vazio!

ACTIVE CAMPAIMG EMAIL MARKETING

<script type="text/javascript">

    (function(e,t,o,n,p,r,i){e.visitorGlobalObjectAlias=n;e[e.visitorGlobalObjectAlias]=e[e.visitorGlobalObjectAlias]||function(){(e[e.visitorGlobalObjectAlias].q=e[e.visitorGlobalObjectAlias].q||[]).push(arguments)};e[e.visitorGlobalObjectAlias].l=(new Date).getTime();r=t.createElement("script");r.src=o;r.async=true;i=t.getElementsByTagName("script")[0];i.parentNode.insertBefore(r,i)})(window,document,"https://diffuser-cdn.app-us1.com/diffuser/diffuser.js","vgo");

    vgo('setAccount', '225745713');

    vgo('setTrackByDefault', true);


    vgo('process');

</script>


$curl = curl_init();

curl_setopt($curl, CURLOPT_URL, "https://trackcmp.net/event");

curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);

curl_setopt($curl, CURLOPT_POST, true);

curl_setopt($curl, CURLOPT_POSTFIELDS, array(

"actid" => "225745713",

"key" => "b2135eb6f16d073327a75ffc0832a1fda68bf50a",

"event" => "YOUR_EVENT",

"eventdata" => "ANY_DATA",

"visit" => json_encode(array(

// If you have an email address, assign it here.

"email" => "",

)),

));


$result = curl_exec($curl);

if ($result !== false) {

$result = json_decode($result);

if ($result->success) {

echo 'Success! ';

} else {

echo 'Error! ';

}


echo $result->message;

} else {

echo 'cURL failed to run: ', curl_error($curl);

}