SendGrid SMTP API

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

+4
source share
1 answer

Disclaimer: I work in SendGrid.

In our example SMTP API, it is recommended to use the Swift_SmtpTransport library, which makes low-level socket connections to end systems. When configured using our example, Swift connects to our systems to deliver your message and does not require you to use SMTP.

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

+8
source

Source: https://habr.com/ru/post/1433194/


All Articles