change smtp port from 25 to 587?

前端 未结 5 604
不知归路
不知归路 2021-01-12 12:34

My ISP have blocked port 25 for sending mails from PHP, and instead have allowed port 587 or 465 to be used. how do i force php mail function to use port 587 instead of defa

5条回答
  •  鱼传尺愫
    2021-01-12 13:11

    You can edit your php.ini file (if you have access) and set smtp_port = 587 or in your code, ini_set('smtp_port', 587).

提交回复
热议问题