Re: submit button in Dreamweaver
The "recipients" named in your code for the form is the email address to which you want the info sent. Looks something like this:
<form action="formproc/formproc.php" method="post" name="EditingForm" target="_top" onsubmit="return validate()">
<input type="hidden" name="env_report" value="REMOTE_HOST,REMOTE_ADDR ,HTTP_USER_AGENT,AUTH_TYPE,REM OTE_USER" />
<input type="hidden" name="recipients" value="your email" />
<input type="hidden" name="subject" value="Add me to the mailing list" />
<input type="hidden" name="good_url" value="thanks.html" />
|