AcelleMail abstracts the wire protocol behind a polymorphic SendingDriver contract (app/SendingServers/Drivers/SendingDriver.php). Built-in drivers include a generic SMTP driver that speaks RFC 5321 against any compliant server, plus vendor-specific SMTP drivers for Amazon SES (AmazonSmtpDriver.php), Mailgun, SendGrid, SparkPost, and others. The vendor drivers wrap the same SMTP exchange but pre-fill the credentials and endpoint, so an operator chooses "Amazon SES SMTP" instead of typing email-smtp.us-east-1.amazonaws.com manually.
For new vendors that ship only a REST API (no SMTP endpoint), AcelleMail also supports an API driver path — same SendingDriver contract, different transport.