Hello All!
I have several email modules throughout my site that work perfectly. I am adding a new one and the email gets sent with the FROM, TO, and SUBJECT properly populated, but the Message is continuously blank. I’d like to use the “readonly” value but I have tested it with and without this value to the same result.
{exp:email:contact_form charset="utf-8" replyto="n" user_recipients="true" }
<label for="from">Your Email: </label>
<input type="text" id="from" name="from" size="40" maxlength="35" value="{member_email}" /><br >
<label for="name">Your Name: </label>
<input type="text" id="name" name="name" size="40" maxlength="35" value="{member_name}" /><br >
<label for="to">To: </label>
<input type="text" id="to" name="to" size="40" maxlength="35" /><br >
<input type="hidden" id="subject" name="subject" size="40" value="Turn Your Finances Around" />
<label for="message">Message: </label>
<textarea name="message" readonly="readonly" rows="8" cols="32">Hi!
I found this website that I wanted to share with you. It has financial tools, budget information, and offers advice to reign in debt. It also offers a smart way out of debt, without consolidation or bankruptcy.
</textarea><br >
<input name="submit" type='submit' value='Submit Form' />
{/exp:email:contact_form}