Html-форма выполняет два действия?
Хорошо...я уверен, что на этот вопрос где-то был дан ответ, но я не могу его найти. Так что заранее спасибо вам, гуру кодирования!
Итак, у меня есть HTML-форма с действием, ссылающимся на formspree. Одним из недостатков formspree является невозможность отправить автоответчик по электронной почте на основе ввода, введенного в поле "электронная почта".
Как я могу заставить форму отправить форму в formspree и отправить автоматический ответ? Ниже приведен мой код для формы:
*********************
<form action="https://formspree.io/xxxxxxxxxx@xxxx.com" method="POST"> <label for="name">Name: <span class="required">*</span></label> <input type="text" id="name" Name="Name" value="" placeholder="John Doe" required="required" autofocus /> <label for="email">Email Address: <span class="required">*</span></label> <input type="email" id="email" name="E-mail" value="" placeholder="johndoe@example.com" required="required" /> <label for="telephone">Contact Number: </label> <input type="tel" id="Telephone" name="Telephone" value="" /> <label for="contact">Preferred Contact Method: </label> <select id="contact" name="Preferred Contact Method:"> <option value="email">Email</option> <option value="phone">Phone - During the Day</option> <option value="phone">Phone - In the Eveneing</option> <option value="phone">Phone - Anytime</option> </select> <label for="enquiry">Purpose: </label> <select id="enquiry" name="Reason:"> <option value="general">General Info</option> <option value="offer">Introductory Offer</option> <option value="experienced">Experienced CrossFitter</option> <option value="feedback">Your Feedback</option> </select> <label for="message">Message: <span class="required">*</span></label> <textarea id="message" name="Message" placeholder="Your message must be greater than 20 charcters" required data-minlength="20"></textarea> <span id="loading"></span> <input type="submit" value="SUBMIT" id="submit-button" /> <p id="req-field-desc"><span class="required">*</span> indicates a required field</p> </form>
**************************
Что я уже пробовал:
Исследование и "onclick", но поскольку ввод для отправки не является кнопкой, я не думаю,что onclick работает