cdub
cdub

Reputation: 25701

SendGrid SMTP API

I am using SendGrid and PHP (CakePHP). My server does not have SMTP enabled. Do I need smtp on my server to use SendGrid's SMTP API?

Upvotes: 4

Views: 5975

Answers (1)

iandouglas
iandouglas

Reputation: 4306

Disclaimer: I work at SendGrid.

Our SMTP API example recommends using the Swift_SmtpTransport library, which makes low-level socket connections to end systems. When configured with our example, Swift connects to our systems to deliver your message, and won't require an SMTP service on your end.

Edit, Jun 20 2014 for new link: https://sendgrid.com/docs/Code_Examples/php.html

Upvotes: 8

Related Questions