Jump to content

Email Attachment is Damaged


plodos

Recommended Posts

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.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.