|
Posted by Jonathan N. Little on 11/16/06 00:36
wayne wrote:
> M wrote:
>> Thats a good point, the user may not have a pop 3 account set up and
>> the java script did not work....
>>
>> Any suggestions on how to do this form submission....???
>>
>> I'm sure there are solutions out there in the user groups and obviously
>> im not looking in the right place....i would appreciate some useful
>> search tips and if you could also point me towards the right groups for
>> html....even better would be a solution....as ive been attempting this
>> form submission for ages :-<
>>
>> Help me.....
>>
>
> I use a formmail from http://www.tectite.com/ and have had good success
> with it. The file is quite large as all of the documentation is inside.
> It is free and secure.
>
> This is the code I use for the form:
>
> <div id="content">
> <h1>Contact Form</h1>
> <p>Please fill in the blanks and click on "Submit." </p>
> <hr />
>
> <form method="post" action="http://your url here">
> <input type="hidden" name="env_report"
> value="REMOTE_HOST,REMOTE_ADDR,HTTP_USER_AGENT,AUTH_TYPE,REMOTE_USER" />
> <input type="hidden" name="recipients" value="your email_*_aol.com" />
> <input type="hidden" name="bcc" value="another email_*_yahoo.com" />
WHOA! Do not use such a script that has you put the send to email
address in a hidden file!!! An absolute spam relay form! The send to
address should either be hard-coded in the server-side script or pulled
for a configuration file not accessible to the public. To OP *do not*
use such a script.
--
Take care,
Jonathan
-------------------
LITTLE WORKS STUDIO
http://www.LittleWorksStudio.com
[Back to original message]
|