Implemented intelligent retry logic for webhook deliveries with exponential backoff, improving reliability for webhook endpoints experiencing temporary issues.
We've implemented a robust retry mechanism for webhook deliveries to ensure your applications receive email notifications even when experiencing temporary connectivity issues.
You can now configure webhook behavior per endpoint:
{
"url": "https://your-app.com/webhook",
"timeout": 30000, // Custom timeout (ms)
"retryAttempts": 3, // Number of retry attempts
"retryDelay": 1000 // Initial retry delay (ms)
}
To ensure proper retry behavior, your webhook endpoint should:
New metrics available in your dashboard:
This update requires no changes to your existing webhook endpoints and is fully backward compatible.