This question may be related to a resolved thread.
I worked on this issue with several peoples help last week, and was able to get it working. But I have discovered it is only working for logged in Members.
I am using the email module’s {contact_form} for the contact page on our store’s blog and I need all visitors to be able to use that contact form to submit issues/questions.
We are using EE 1.6.5 Build: 20081028 and the code below is used directly in the template (not embeded).
How can I make this form work for visitor submissions as well?
<div class="contact_form">
{exp:email:contact_form recipients="[email protected]" redirect="2" user_recipients="false"}
<label for="name">Your Name:</label>
<input type="text" id="name" name="name" size="40" maxlength="60" /></p>
<label for="from">Your Email:</label>
<input type="text" id="from" name="from" size="40" maxlength="60" value="{member_email}" /></p>
<label for="subject">Subject:</label>
<input type="text" id="subject" name="subject" size="40" maxlength="60" /></p>
<label for="message">Message:</label>
<textarea id="message" name="message" rows="15" cols="40"></textarea>
<input name="submit" type="submit" value="Submit Form" /></p>
{/exp:email:contact_form}
</div><!-- closing .contact_form div -->