So that’s NOT introduced by Freeform? That’s where I assumed the problem lied, but it’s right there in the spot where this was:
{exp:freeform:form form_name='contact_us' required='name|email|message' notify='hello@hearsaynashville.com' template='contact_us' send_user_email='yes' user_email_template='contact_us_autoreply' return='thanks'}
I just assumed it was something Freeform was doing to hide the email addresses. No?
Take the freeform tag out, and the code I referenced earlier, when rendered, becomes:
<div id="main_twocolumn" class="span-14">
<h1>Contact Us</h1>
<p>Got a question? Suggestion? We'd definitely love to hear from you. Even if it's a complaint! We know the only way we get better is through honest communication with our
clients, so bring it on. Of course, we take pretty kindly to friendly words as well. So whatever it is, let us hear it:</p>
<form>
<p><span class="required">*</span> <span class="inputlabel">Name:</span><br />
<input type="text" name="name" value="" class="name" size="25" />
</p>
<p><span class="required">*</span> <span class="inputlabel">Email:</span><br />
<input type="text" name="email" value="" class="email_address" size="25" />
</p>
<p><span class="required">*</span> <span class="inputlabel">Question/Comment:</span><br />
<textarea rows="10" cols="100" name="message" class="comment"></textarea>
</p>
<p class="required_explanation"><span class="required">*</span> We'll need you to fill these out to submit this form.</p>
<div class="panel_buttons">
<input type="image" src="/themes/site_themes/hearsay/contactus_button_submit.png" class="button_submit" name="submit" value="submit" />
<a href="#" class="contact-slide"><img src="/themes/site_themes/hearsay/contactus_button_cancel.png" class="button_cancel" alt="" /></a>
</div>
</form>
</div><!--/#main_twocolumn-->