ok. i have those classes. but if it is possible i would like to send message with file attachment without using classes. i know that it should look something like: in form : <input type=file name=attach> in script run be something like: if (is_uploaded_file($attach)) { $headers .= "MIME-Version: 1.0\r\n"; $headers .= "Content-Type: ".$attach_type."; name=".$attach_name."; Content-Disposition: attachment"; $headers .= "X-Attach: $attach"; } but it doesn't work.i miss something. szparag
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php