0

我试图在模态窗口中制作联系表格。我以为我已经正确完成了所有操作,但是当我单击发送时,我没有收到电子邮件。谁能告诉我我哪里出错了?

首先十分感谢。圣诞快乐!

<!-- Modal -->
<div id="myModal" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h3 id="myModalLabel">Contact McGregor Beauty</h3>
</div>
<div class="modal-body">
<form id="contact" method="post" action="mailto:aka_pipsqueak@msn.com">
Your Name   &nbsp;<input class="input-xlarge" type="text" placeholder="Please write your name here" required>
<br />
Your Email   &nbsp;<input class="input-xlarge" type="email" placeholder="Please enter your email address here" required><br />
Phone(Optional)  &nbsp;<input class="input-large" type="number" placeholder="Add a telephone number"><hr />
<label><strong>Treatments of Interest</strong></label>
<label class="checkbox">
<input type="checkbox" value="Waxing & Tinting">Waxing & Tinting
</label>
<label class="checkbox">
<input type="checkbox" value="Massage">Massage
</label>
<label class="checkbox">
<input type="checkbox" value="Reflexology">Reflexology
</label>
<label class="checkbox">
<input type="checkbox" value="Manicure/Pedicure">Manicure & Pedicure
</label>
<label class="checkbox">
<input type="checkbox" value="MLD">MLD
</label>
<br />
<label><strong>Your Questions/Comments</strong></label>
<textarea rows="2" style="width:500px" type="text" required></textarea>

<div class="modal-footer">
<button class="btn btn-primary" type="submit" data-dismiss="modal" aria-hidden="true">Send</button>
</div>
</form>
4

1 回答 1

0

你用的是什么邮件服务器?

用于处理表单的 http 请求的服务器端代码在哪里?

仅在 html 中创建一个表单不会做任何事情,并且 mailto: 的操作是不正确的,您也不想这样做,因为该电子邮件地址可以在标记中看到并且会被发送垃圾邮件,直到您关闭它。

您打算使用哪种编程语言?

这是您可以使用 php 进行的基本示例:

http://www.w3schools.com/php/php_mail.asp

于 2012-12-24T17:47:50.060 回答