0
我遇到了一個非常奇怪的問題與ixwebhosting。ixwebhosting php郵件()與主題的問題
我可以使用PHP mail()
函數來發送電子郵件$subject = "test";
但如果$subject = "testing of information send";
的話,我將無法接收任何郵件
但實際上,「郵件發送!」顯示在php頁面中。
if (!mail($email, $subject, $body, $from)) { echo "Error Sending Email!"; }
else
{ echo "Mail sent!"; }