2012-12-24 3 views
0

나는 모달 창에서 연락 양식을 만들려고 노력했다. 나는 모든 것을 올바르게했다고 생각했지만, 보내기를 클릭하면 이메일을받지 못했습니다. 아무도 나를 잘못 표시 할 수 있습니까?나는 내 mailto 연락 양식을 얻을 수 없다.

대단히 감사드립니다. 메리 크리스마스!

<!-- 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:[email protected]"> 
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> 
+0

: 여기

는 PHP를 사용하여 수행 할 수있는 기본 예제 메일 ... – rene

+0

PC에 기본 메일 클라이언트가 구성되어 있습니까? – Barmar

답변

0

어떤 메일 서버를 사용하고 있습니까?

여기서 양식의 http 요청을 처리하는 데 사용되는 서버 측 코드는 무엇입니까?

HTML 형식의 메일은 아무 것도하지 않고 mailto :의 동작이 정확하지 않습니다. 또한이 이메일 주소가 마크 업에 표시되어 스팸 될 수 있기 때문에이 작업을 수행하지 않으시겠습니까? 당신은 그것을 닫습니다.

어떤 프로그래밍 언어를 사용할 계획입니까? 이 메일 클라이언트 내가 완료하고 보낼 수있는 이메일 창을 팝업 의미에서 나를 위해 작동, 다운 손질 버전

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

관련 문제