Postfix
Postfix is a free, open source mail transfer agent (MTA) originally written by Wietse Venema at IBM Research as a fast, secure, and easy-to-administer alternative to Sendmail. It runs on UNIX-like systems including Linux, BSD, and macOS, routing and delivering email over SMTP with extensive support for TLS, SASL, DKIM/SPF/DMARC integration, content filtering, and policy delegation. Postfix is administered via configuration files (main.cf, master.cf) and command-line tools rather than a public HTTP API, and is one of the most widely deployed mail servers on the internet.
APIs
Postfix SMTP
Postfix implements SMTP (RFC 5321) for sending and receiving electronic mail, with submission (port 587), SMTPS (port 465), and standard SMTP (port 25) endpoints. There is no pu...