Valkerri has asked for the wisdom of the Perl Monks concerning the following question:
I am receiving files from an HTML form using:
<input TYPE="file" NAME="attachedfile" MAXLENGTH=50 ALLOW="text/*">
Then, I email the attachments using MIME::Lite. I used (regardless of file type received):
$message -> attach (Path => $pathtofile, Type => 'binary');
I tested this from my Mac in both Netscape and IE. The results were very reliable this way. None of the files were corrupted and the filenames were readable.
Testing from a Windows machine, however, resulted in filenames being the whole path from the person's computer.
Is there something I am missing or do I have to fix the filename myself?
Thanks in advance for your help.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Paths for filenames from Windows with TYPE=file
by grinder (Bishop) on Jun 27, 2001 at 19:46 UTC | |
by bwana147 (Pilgrim) on Jun 27, 2001 at 20:03 UTC |