tempo1
Programmer
- Feb 20, 2007
- 118
Hi everyone,
I added a "FORM" in my html page to enable the user send me a file via mail. The code is:
The problem is that what i get in my mail is the file's name only. I'd like to get the file itself not its name.
Can anyone help me with that ?
Thanks.
I added a "FORM" in my html page to enable the user send me a file via mail. The code is:
Code:
<html>
<head>
<title>
send_me_a_file
</title>
</head>
<body>
<form action="mailto:mymail@mail.com?subject="myfile" enctype="text/plain"
name="regiser" method="post">
<INPUT TYPE="file" name="send_me_a_file" size="20">
<INPUT TYPE="submit" value="send_file" name="regiser" method="post" dir="rtl">
</form>
</body>
</html>
Can anyone help me with that ?
Thanks.