Service

Quick Tip :: Check Google Email Address

It’s possible to check if a Google Suite based email address is valid or not:

1
$ curl -i https://mail.google.com/mail/gxlu?email=${EMAIL_ADDRESS}
Monday, November 6, 2023

Mail Queue Dispatcher

When writing web applications, one often has to send email as a part of the notification or registration process.

Sending email through an SMTP server directly from your main web application thread can block for an unreasonable amount of time while serving a response page that is waiting for the email to be delivered.

Wednesday, July 1, 2015