We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0280c4 commit d010ef3Copy full SHA for d010ef3
aws-ses-sender/api/handler.go
@@ -172,6 +172,9 @@ func createResultEventHandler(c fiber.Ctx) error {
172
return c.Status(fiber.StatusBadRequest).JSON(fiber.Map{"error": "SES message_id not found"})
173
}
174
175
+ // Log notification type for monitoring
176
+ log.Printf("Received %s notification from SES for message %s", sesNotification.NotificationType, sesNotification.Mail.MessageId)
177
+
178
// Find request_id from headers
179
var reqId uint
180
for _, header := range sesNotification.Mail.Headers {
0 commit comments