Hi all,
I have created a web interface containing a textfield with a browse button. This allows the user to select a file.
I want the user to be able to email that file. How do I do this??
I've tried using...
$file = $POST['file']; // name of textfield
mail($email, $file, $headers);
But this only sends the filepath as an email.
Please help.
Kevin.