0
我一直在無休止的2天這個錯誤。在所有適當的協議之後放鬆。該錯誤表明,該電子郵件是無效的,但我用它與松鼠郵件沒有問題,它在php.ini中看起來完全相同我簡直難以理解的唯一有意義的是,它是某種語法錯誤的地方但我可以弄清楚當我回顯$ header時它會顯示「From:[email protected]」是否正確,它是否認爲from是電子郵件地址的一部分。我一直在放棄所有的風口浪尖,所以如果可以的話請幫助我。謝謝。繼承人的PHP:hmailserver 550無效的地址錯誤通過php形式發送
$subject = "Your New Password";
$headers = "FROM: [email protected]";
$message = "Your new password is as follows:
----------------------------
Password:$emailpassword
----------------------------
This email was automatically generated.";
if (!mail($email,$subject,$message,$headers)){
echo ("error");
}else{
echo"password sent";
,並在php.ini:
SMTP = localhost
smtp_port = 25
sendmail_from = [email protected]