Hello,

I am working on Email Marketing application. We have facing lot of problem with Gmail customers Mail Open count. I google on above issue but I did not get proper solution. Google maintain separate server for lodging images in mail.

Can anybody tell me how to get gmail customers email open count.

Thanks.

you can use simple ajax request in your email's html body. get that request and set some counter. I dont know this method is good or not but I think this will work.

@Aslam: thank you very much. We are waiting any one reply, Now I got one reply from you. I let know after implementation. Can you plz give any reference sites for Ajax Request.

hi ! here is the sample ajax code

 $.ajax({
            type: "POST",
            url: "commonWebservice.asmx/getLocations",
            data: "{'TariffCardId':'" + tariffCardId + "'}",
            contentType: "application/json; charset=utf-8",
            dataType: "json",
            success: function (mdata) {
                strItems = mdata.d.split(',');
                $('#txtLocation').autocomplete({
                    source: strItems
                });
            },
            error: function (msg) {
                alert(msg.status + ' ' + msg.statusText);
            }
        });
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.