Guest_imported
New member
- Jan 1, 1970
- 0
My formmail.cfm doesnt seem to work. No errors, but no email gets sent to me. Can anyone see whats wrong?
<CFMAIL to="me@myisp.com" from="form@mywebsite.com" subject="ORDER" server="mail.mywebsite.com" port=25>
#form.fieldnames#
</CFMAIL>
<cflocation url="thanks.htm">
I was told that #form.fieldnames# will print all the input fields without having to specify them all individually. Do i have to do <form name="fieldnames" ... > or is it a generic thing? My page which calls formmail.cfm looks pretty much like this:
<form action="formmail.cfm" method="POST">
<input type=text name="name">
<input type=text name="company">
<input type=text name="Email">
<input type="submit" value="Send order">
</form>
any ideas??
Thanks.
<CFMAIL to="me@myisp.com" from="form@mywebsite.com" subject="ORDER" server="mail.mywebsite.com" port=25>
#form.fieldnames#
</CFMAIL>
<cflocation url="thanks.htm">
I was told that #form.fieldnames# will print all the input fields without having to specify them all individually. Do i have to do <form name="fieldnames" ... > or is it a generic thing? My page which calls formmail.cfm looks pretty much like this:
<form action="formmail.cfm" method="POST">
<input type=text name="name">
<input type=text name="company">
<input type=text name="Email">
<input type="submit" value="Send order">
</form>
any ideas??
Thanks.