Sending mail in php

前端 未结 5 654
死守一世寂寞
死守一世寂寞 2020-12-21 05:45

Here i am new to PHP, i want to send the mail and my application is running on go daddy sahre hosting so please tell me hows can i achieve it . thanks to all.

I got

5条回答
  •  死守一世寂寞
    2020-12-21 06:17

    Beware that while the PHP mail() function is pretty simple and convenient to use, the computer OS must be able to send mail by itself.

    You have to check the return value of mail() (boolean, true if mail was accepted for delivery).

      $result = mail( ... );
    

    If the $result variable is false, you have to check your computer mail configuration/implementation.

    If it is true, and the mail is not sent, you have to check the computer mail logs.

提交回复
热议问题