Webhooks

SMTPeter has a tab named WEBHOOKS, previously called Feedback Loops. Webhooks are processes that notify their user of events that happen in real time through HTTP POST. This allows you to always have the most recent results of your mailing.

While Webhooks are very useful, they should be used with caution as they can generate large amounts of calls. If you are unsure about your server capacity or do not need real-time feedback you can also view the logfiles or use the SMTP or REST APIs.

There are several types of Webhooks. The articles linked below explain these types in more detail:

Webhooks in SMTPeter

Webhooks can be used to sync data that passes through Copernica directly into your own application. Webhooks require a script on your own server to execute whenever information is provided through the Webhook. You can set several triggers in the Webhooks tab such as opens, clicks, profile edits and bounces.

The data you receive is very rich and allows you to easily link it to the data already present in your system.

Setting up Webhooks

The first step for setting up a Webhook is to navigate to the WEBHOOK tab. To create a Webhook you pick a type and then add the callback URL, where the data will be sent to after configuration.

Security

To protect your endpoint from abuse and false information injection, SMTPeter signs all requests to your endpoint, so you can be sure it's actually SMTPeter sending you the data.

More information