RE: [PHP] attachment filename

2002-04-16 Thread James E. Hicks III
$mime .= "Content-type: application/octet-stream;\r\n"; $mime .= "Content-type: application/octet-stream; name=\"$attach_name\"\r\n"; -Original Message- From: ROBERT MCPEAK [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 16, 2002 2:45 PM To: [EMAIL PROTEC

[PHP] attachment filename

2002-04-16 Thread ROBERT MCPEAK
The code below very nicely sends an email attachment, but, the name of the attachment appears as "Part.000," not the original filename of the attached file. How do I set the filename of the attachment? I'd like it to be something nice, like "yourfileattachment.txt" or something, not "Part.000."