change smtp port from 25 to 587?

前端 未结 5 641
不知归路
不知归路 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

    If you can, try to override smtp_port setting with ini_set(). Should be something like this:

    ini_set('smtp_port', 587);
    

提交回复
热议问题