How do I send email on heroku using PHP?

前端 未结 2 964
伪装坚强ぢ
伪装坚强ぢ 2021-01-12 14:21

I have created PHP app and deployed using heroku. In the app, I have contact form to send mails to my gmail account. To implement this, I have written the following PHP code

2条回答
  •  刺人心
    刺人心 (楼主)
    2021-01-12 15:09

    Heroku doesnt allow send e-mails, you must use external SMTP server.

    "To send emails from applications deployed to Heroku, use an external SMTP service." https://devcenter.heroku.com/articles/smtp

    How to send e-mails throw SMTP is described here: Sending email with PHP from an SMTP server

提交回复
热议问题