PHP Form Message

后端 未结 4 1744
逝去的感伤
逝去的感伤 2021-01-23 03:16

So I have a form:

4条回答
  •  甜味超标
    2021-01-23 03:40

    Use

    if(mail('myemail.co.uk', $email, $message))
        $sent_mail = true;
    else
        $sent_mail = false;
    

    And finally:

    
    

提交回复
热议问题