PHP : send mail in localhost

后端 未结 4 649
-上瘾入骨i
-上瘾入骨i 2020-11-27 06:24

I would like to send email through php code hosted locally.



        
4条回答
  •  执笔经年
    2020-11-27 06:57

    It is configured to use localhost:25 for the mail server.

    The error message says that it can't connect to localhost:25.

    Therefore you have two options:

    1. Install / Properly configure an SMTP server on localhost port 25
    2. Change the configuration to point to some other SMTP server that you can connect to

提交回复
热议问题