Tag
#sendgrid
2 posts tagged “sendgrid”.
- 20 min read
The SendGrid alternative for AI agents
SendGrid is an outbound-first sending platform; its one inbound path, Inbound Parse, POSTs mail as multipart/form-data with a charsets map your code must honor before an agent can even read a verification code. MailKite (which we build) gives an agent a real inbox: parsed JSON, an auth block for trust, and a receive→reply loop. For developers wiring an autonomous agent to email.
- 14 min read
The honest SendGrid Inbound Parse alternative
SendGrid Inbound Parse POSTs inbound mail to your endpoint as multipart/form-data: a headers blob, body text, attachment file parts, and a charsets map you must honor to re-decode each field to UTF-8. MailKite (which we build) delivers the same mail as one JSON webhook with decoded text/html, an auth{spf,dkim,dmarc,spam} object, and attachments as short-lived signed URLs. A fair comparison with working code for both sides.