I recently purchased a Theme/Skin in the DNN store and found the creator to be unwilling to help with questions. There is a contact us template which contains a Contact Us form, with fields to fill out and a submit button. Admittedly, source code is not my strongest point, however, I cannot figure out how to get an email to send to our email address with this as the source code:
<div class="contact-page contact-section">
<div id="contact-form">
<div class="row">
<div class="col-sm-6"><input id="name" name="name" placeholder="Name (required)" type="text" /></div>
<div class="col-sm-6"><input id="mail" name="mail" placeholder="Email (required)" type="text" /></div>
</div>
<input id="website" name="website" placeholder="Website" type="text" /><textarea id="comment" name="comment" placeholder="Your Message (required)" style="height: 150px;"></textarea>
<div class="submit-area"><input class="DefaultBackground" id="submit_contact" type="submit" value="Submit" /></div>
</div>
</div>
I tried putting our email address as a substitute for "contact" in id="submit_contact" That didn't work. I tried putting a mailto: command there with our email address there, that didn't work either. I'm feeling like there is something embarrassingly simple I'm not seeing. Any help would be really appreciated. I'm a "power user" not a programmer.