How do I get email analytics in sendgrid?

764 views Asked by At

I am sending email using sendgrid.

Are there any options in sendgrid to get email analytics (open/bounced/replied emails) for each users email address?

5

There are 5 answers

1
bvanvugt On

I've done this two ways before:

1) Use SendGrid's Event API to collect and aggregate the data yourself.

2) Use a service like sendwithus on top of your SendGrid account, which will collect your SendGrid analytics for you and provide analytics by recipient, template, segment, etc. They also provide an API and Ruby client.

2
notrab On

Once you're logged into SendGrid, navigate to the Stats Dashboard.

You should then be able to see something like this:

SendGrid Stats

I hope this helps.

0
Muhammad Taqi On

Yes, There are option available for this, to get the status of individual emails sent via sendgrid.

Send a unique arguments with every email you sent and then later on you can get status of these emails with reference to unique argument.

Some more explanation of your question will help us a-lot to describe you the best possible solution.

i have recently done this work, so if you explain the whole scenario, i will come up with the solution.

0
Martyn Davies On

There are two ways to get hold of this data:

Use the SendGrid Event Webhook to get near realtime information about every event for every email you send via SendGrid. It works by issuing a POST request to a URL that you specify.

You can then store all this data for consumption later on and it's by far the most granular information you can get. Key/Value stores like Redis are a good option for this, but if you want a simple option to get going, check out the SendGrid EventKit to get up and running quickly.

Or:

Grab the data via the Stats API. This endpoint allows you to grab the numbers you need in a multitude of ways for both main and subuser accounts.

Based on your question, you should investigate the Event Webhook as it will give you most clarity on what happens with each email you send.

0
Ryan Buckley On

You can now use Thinbox to get analytics from Sendgrid, Mailgun, Mandrill, or just by bcc'ing an email address they give you. It's basically like EventKit but for the rest of the ESPs too.