I have made an html5 website from a template for my church. My biggest issue is the contact page. I have tried till my fingers bled out trying to figure this out… I have been playing with php, but when I try to make the form work a variety of nonsense has happened, but not sending mail.
This is the website: http://wellspringworshipcenter.us/
I know I have to create a php file to send this form. I know the code should look something like this:
BUT after fighting for hours I am submitting to my ignorance and asking for help.
This is the form code for the website:
<div class="form-group">
<!--<label for="contact_name">Name</label>-->
<input type="text" id="contact_name" class="form-control" placeholder="Name" />
</div>
<div class="form-group">
<!--<label for="contact_email">Email Address</label>-->
<input type="text" id="contact_email" class="form-control" placeholder="Email Address" />
</div>
<div class="form-group">
<!--<label for="contact_message">Message</label>-->
<textarea id="contact_message" class="form-control" rows="7" placeholder="Write a message"></textarea>
</div>
<button type="submit" class="btn btn-primary">Send</button>
</form>
any help I could get would be so greatly appreciated. thanks!!