plodos Posted February 6, 2013 Share Posted February 6, 2013 Hello I have a webform like below input name="fileatt" type="file" id="fileatt" size="60" form name="form" method="POST" enctype="multipart/form-data" onsubmit="return checkCheckBoxes();" action="sendX.php" sendX.php require("class.phpmailer.php"); $theFileName = $HTTP_POST_FILES['fileatt']['name']; $mail = new PHPMailer(true); $mail->IsSMTP(); $mail->Host = "88.35.11.87"; $mail->SMTPAuth = true; $mail->Username = "info@xxx.org"; $mail->Password = "xxx"; $mail->From = "info@xxx.org"; $mail->FromName = $aut_email; $mail->CharSet = "utf-8"; $mail->IsHTML(true); $mail->AddAttachment($_FILES['fileatt']['tmp_name'],$theFileName); $mail->AddAddress("info@xxx.org","xxx- Info"); $mail->AddReplyTo($aut_email,$name); $mail->Subject = '.$msg_title; $mail->Body = $message; $mail->MsgHTML($message); I attached WORK.DOC file When I check the email, attached file is damaged and The new attachment name like Aasdjkaskdaj Email is working. Only attachment part is problem. What can be the problem ? Thanks for your help. Quote Link to comment https://forums.phpfreaks.com/topic/274098-email-attachment-is-damaged/ Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.