Monday 26 July 2004 2:14:39 am
I ve build simple form like this
<form method="post" action={"/form/process"|ezurl}>
<input name="surname" type="text" class="inputForm" size="43" />
<input name="email" type="text" size="43" class="inputForm" />
<textarea name="message" cols="30" rows="10" wrap="VIRTUAL" class="inputForm"></textarea>
<select name="MailSendTo" id="MailSendTo" class="inputForm">
<option value="[email protected]">First</option>
<option value="[email protected]">Second</option>
<option value="[email protected]">Third</option>
</select>
<input type="submit" name="Submit" value="Send" class="inputForm" />
</form>
I enabled form module in site.ini.append. I gave right rule to anonymouse user.When i submit the everything seems to be OK (The message was sent successfuly) but the email with collected data isn`t send to right address. Where is the problem:(? Thanks for any help
|