嗨,郵件功能在PHP
我有我的Office Outlook中,這樣我可以發送郵件到任何人的身份證。 問題是我正在使用PHP sciprt並使用郵件功能發送郵件。我在臺式電腦上安裝了WAMP以運行php腳本。我想檢查PHP的郵件功能,但我不知道如何配置我的本地WAMP服務器的辦公室前景。這是下面的代碼我用於發送郵件在PHP腳本。請給我解決辦法:
<?php
$to = "[email protected]";
$subject = "Test mail";
$message = "Hello! This is a simple email message.";
$from = "[email protected]";
$headers = "From:" . $from;
mail($to,$subject,$message,$headers);
echo "Mail Sent.";
?>
希望你使用Windows pc ... –
改爲使用phpMailer。 –