Zim
Zim

Reputation: 396

Azure - Receiving EmailDeliveryReportReceived but not EmailEngagementTrackingReportReceived

I have both events selected in my Event Subscription.

enter image description here

But for some reason, only the EmailDeliveryReportReceived is being posted to my endpoint. I've actually clicked and opened the email on my phone. Anyone know why?

  app.post("/events", authExpress, (req, res) => {
    console.log("============ Event hook ===================");
    console.log(`${JSON.stringify(req.body)}`)
    const eventList: Event[] = req.body;
    eventList.forEach((event) => {
      updateEmailLog(event);
    });

    res.status(200).send("success");
  });

Upvotes: 0

Views: 34

Answers (0)

Related Questions