This utility allow registered user to use sendmail form in your html page.
How can I use this utility?
Copy and paste this code in your html page.
Replace Account_Name with your login/account name
Replace Return_Page with the return page url you want (example: http://www.net4free.org/Category/Sitename/returnpage.html),
<table>
<form method=post action="http://www.net4free.org/sendmail.php">
<input type="hidden" name="user" value="Account_Name">
<input type="hidden" name="ok" value="Return_Page">
<tr>
<td>From:</td>
<td><input type="text" name="from" size=30></td>
</tr>
<tr>
<td>Subject:</td>
<td><input type="text" name="subject" size=30></td>
</tr>
<tr>
<td>Message:</td>
<td><textarea name="message" rows="8" cols="40"></textarea></td>
</tr>
<tr>
<td colspan=2 align=right><input type="submit" value="Send"></td>
</tr>
</form>
</table>
|