Mondeo
Well-known member
I have a basic HTML page (the host doesnt support ASP or .NET)
I have a simple mail form
<form name="form1" method="post" action=http://remotesite/sendmail.asmx>
<input type="text" name="name" width="180">
<input type="text" name="phone" width="180">
<input type="text" name="email" width="180">
<textarea name="comments" rows="3"></textarea>
<input type="submit" name="Submit" value="Submit">
</form>
I want to use the sendmail service to send mail on behalf of this page, can it be done?
How does sendmail.asmx access the form values of this page? It also needs either the URL of the first page or its IP address to restrict usage.
Thanks
I have a simple mail form
<form name="form1" method="post" action=http://remotesite/sendmail.asmx>
<input type="text" name="name" width="180">
<input type="text" name="phone" width="180">
<input type="text" name="email" width="180">
<textarea name="comments" rows="3"></textarea>
<input type="submit" name="Submit" value="Submit">
</form>
I want to use the sendmail service to send mail on behalf of this page, can it be done?
How does sendmail.asmx access the form values of this page? It also needs either the URL of the first page or its IP address to restrict usage.
Thanks