I would like to send file from my form.Already on the page is following code:
<form action="filemail.php3" method=post enctype="multipart/form-data">
To whom: <input name=title size=5><br>
Select your file: <input type=file name=docs accept="text/plain">
<input type=submit value="Send"><br>
</form>
How to to write a script (say in filemail.php3) to send file form my HD to entered mail.
I was reading that I have to copy first this file etc. but there wasn't example hoe to SEND IT.
Thanx.