-1
你好?我希望有人能幫助我。這是問題所在,我發送電子郵件到Gmail的代碼無法使用。我已經安裝了hMailServer,但我不知道如何配置它。
任何幫助將不勝感激,非常感謝。
<?php
$to = '[email protected]';
$subject = 'the subject';
$message = 'hello';
$headers = 'From: [email protected]' . "\r\n" .
'Reply-To: [email protected]' . "\r\n" .
'X-Mailer: PHP/' . phpversion();
mail($to, $subject, $message, $headers);
echo "Message sent!";
?>