Understanding the journey of an email from your server to the recipient's inbox.
When you click "Send" in Senddera, a complex chain of events is triggered. Here is how it works step-by-step:
Senddera doesn't send the email immediately. Instead, it creates a "Job" in the Redis queue. This allows the application to remain fast and responsive while workers handle the actual sending in the background.
A queue worker picks up the job and hands the email data to your configured Mail Transfer Agent (MTA) or sending service (like Amazon SES or your own SMTP relay).
Your MTA initiates an SMTP (Simple Mail Transfer Protocol) handshake with the recipient's mail server. During this phase, several things happen:
The recipient's server performs authentication checks to verify that you are who you say you are:
If all checks pass and the recipient's mailbox is active, the email is delivered. If the mailbox is full or doesn't exist, a "Bounce" message is sent back to your server, which Senddera tracks via webhooks.