HTML、PHP、およびJSをいじっているだけで、問題が発生しました。私のコードは次のとおりです。
<html>
<head>
<title> Dummy Code </title>
<script>
sendMail(){
<?php
$to = 'example@dot.com';
$subject = 'DummyCode.com';
$message = 'This is a text message sent from DummyCode.com';
$headers = 'From: example@dot.com' . "\r\n" .
'Reply-To: admin@dummycode.com' . "\r\n" .
mail($to, $subject, $message, $headers);
?>
}
</script>
</head>
<body>
<h1 align=center> DummyCode.com </h1>
<button type="button" onClick="sendMail()"> Send Mail! </button>
</body>
</html>
私の問題は、ボタンをクリックしてもJSが実行されず、ページをリロードしたときにのみ実行されることです。
誰?ありがとう!