我在網(wǎng)站上有一個(gè)發(fā)送消息的表格,消息應(yīng)該發(fā)送到一個(gè)電子郵件地址。由于我是網(wǎng)站建設(shè)的新手,所以我正在玩,但無(wú)法讓表格與 action.php 文件一起使用。當(dāng)我將 HTML 代碼和 action-page.php 上傳到服務(wù)器(在同一子文件夾中)時(shí),我在網(wǎng)站上鍵入的消息根本沒(méi)有發(fā)送。我沒(méi)有收到電子郵件,當(dāng)我單擊發(fā)送按鈕時(shí),我被轉(zhuǎn)發(fā)到瀏覽器中的空白頁(yè)面。最好我只停留在同一頁(yè)面上并收到“您的消息已發(fā)送”通知,但這是一個(gè)“不錯(cuò)的”我只是想讓它工作。我使用: https: //html.form.guide/email-form/php-form-to-email.html作為代碼的參考。1. 哪里出了問(wèn)題或?yàn)槭裁床黄鹱饔茫烤W(wǎng)站留言表單代碼如下:<div class="o-screen-contact__col-form"> <form class="c-form js-form-validation" action="action-page.php" method="post"> <label for="contact-name">Jouw naam</label> <input class="c-form__field" id="contact-name" type="text" placeholder="Bijvoorbeeld, Jade van de Ven" required> <label for="contact-email">Jouw e-mail</label> <input class="c-form__field" id="contact-email" type="email" placeholder="Jouwemail@email.nl" required> <label for="contact-message">Jouw bericht</label> <textarea class="c-form__field" id="contact-message" name="name" placeholder="Schrijf hier jouw bericht of zorg" required></textarea> <fieldset class="u-text-right"> <button class="c-button c-button--primary" type="submit" name="contact-submit">Zend mij een bericht</button> </fieldset> </form> </div>我使用 post 方法并為要發(fā)送到電子郵件地址的實(shí)際消息制作了一個(gè) action-page.php 文件。action-page.php 文件如下所示:<?php$name = $_POST['contact-name'];$visitor_email = $_POST['contact-email'];$message = $_POST['contact-message'];?><?php $email_from = 'zorg@ontzorg-zwolle.nl'; $email_subject = "Nieuwe email website ontzorg-zwolle"; $email_body = "You have received a new message from the user $contact-name.\n". "Here is the message:\n $contact-message".?><?php $to = "zorg@ontzorg-zwolle.nl"; $headers = "From: $email_from \r\n"; $headers .= "Reply-To: $visitor_email \r\n"; mail($to,$email_subject,$email_body,$headers);?>2. action-page.php文件放在服務(wù)器的什么地方我已將 action-page.php 文件與 index.html 文件(消息表單所在的位置)放在同一文件夾中。那是正確的地方嗎?或者我是否需要將文件放在其他地方才能正確調(diào)用?
用于網(wǎng)站發(fā)送消息表單的 action.php
婷婷同學(xué)_
2023-03-26 14:42:07