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 = "[email protected]"; $mail->Password = "xxx"; $mail->From = "[email protected]"; $mail->FromName = $aut_email; $mail->CharSet = "utf-8"; $mail->IsHTML(true); $mail->AddAttachment($_FILES['fileatt']['tmp_name'],$theFileName); $mail->AddAddress("[email protected]","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. Link to comment https://forums.phpfreaks.com/topic/274098-email-attachment-is-damaged/ Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.