#Webhook Events
Events are triggered during the Quail Mail. process, encompassing five key types: delivered,bounces,unique_opens,opens,unsubscribes
Configure your webhook URL through the user dashboard to seamlessly receive email processing events.
Events
The event signifies the current stage of the email processing cycle.
- 1. The message has been delivered successfully to the recipient's server. Event- delivered
 - 2. The receiving server permanently declined or was unable to accept the email for this recipient. Event- bounces
 - 3. Recipient has opened the HTML message in first time. Event- unique_opens
 - 4. The recipient has initiated the first-time opening of the HTML message. Event- opens.
 - 4. The recipient has selected to unsubscribe by clicking on the 'Opt Out of All Emails' link.
 
[
  {
    "email": "example@gmail.com",
    "event": "delivered",
    "timestamp": "2023-12-21 19:32:57"
  },
  {
    "email": "example2@gmail.com",
    "event": "bounces",
    "timestamp": "2023-12-21 19:32:59"
  }
  {
    "email": "example3@gmail.com",
    "event": "unique_opens",
    "timestamp": "2023-10-21 18:32:57"
  }
  {
    "email": "example3@gmail.com",
    "event": "opens",
    "timestamp": "2023-10-21 18:32:57"
  }
  {
    "email": "alex@gmail.com",
    "event": "unsubscribes",
    "timestamp": "2022-10-21 18:32:57"
  }
]
                                                
                                                                123456789101112131415
                                                                1617181920212223242526
                                                            
                                            