Monday 21 November 2005 5:10:56 pm
I created a template for a form to be sent by email. I am able to display the form but I don’t receive any emails. Below is the code for the template.
I tried with the hidden field MailSendTo and without it but I never receive anything by mail….
I also changed the email address to mine for the administrator.
I also enabled the form process in site.ini Would you know if there is anything else I should look at? Thank you Simon <form action={"/form/process"|ezurl} method="post"> <table width="100%" border="1" cellpadding="2" cellspacing="0"> <tr> <td>Name</td> <td>Branch</td> <td>Phone extension</td> </tr> <tr> <td><input type="text" name="name" value="" /></td> <td><input type="text" name="branch" value="" /></td> <td><input type="text" name="ext" value="" /></td> </tr> </table> <input type="hidden" name="MailSubject" value="Request for Payment" /> <input type="hidden" name="MailSendTo" value="my_address@intranet.com.au" /> <input type="hidden" name="RedirectTo" value="http://10.4.3.25/intranet" /> <input class="button" type="submit" value="Send" /> </form> <input class="button" type="submit" value="Send" /> </form>
|