Jquery Validation Posting to an email
Hi, ive used and configured jQuery validation on my own form which is much like the marketo example..
The only fields i have are: Name, Number, Email, Subject(Option Box) and Message(Textarea)
I cant however, see any example that simply just sends the gathered information from the form to an email.
Ive tried a few methods but nothing seems to work.
If someone could point me to a good example or what i might need to add in my header scripts because i currently have this:
- <script src="js/jquery.js"></script>
<script src="js/jquery.validate.js"></script>
<script src="js/mktSignup.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("#contact-form").validate();
});
</script>