Phpmailer Addattachment出错了

时间:2016-12-14 15:23:54

标签: php email phpmailer attachment

我是一个php初学者,我的英语可能是错的...我试图找到一种方法通过phpmailer发送邮件,附带表格。 目前文件上传到服务器上的一个目录,但有2个文件,一个好,另一个是0字节,代码附加那个文件......错误的!我无法找到错误的... 邮件发送时也没有消息显示... 如果有人能帮助我,我将非常感激!

HTML

<form action="formulaire.php" method="post" enctype="multipart/form-data">
    <table align="center"><tr><td><label for="nom">Votre nom :</label></td>
        <td><input type="text" name="nom" required/><br></td></tr>
        <tr><td><label for="prenom">Votre prénom: </label></td>
        <td><input type="text" name="prenom" required/><br></td></tr>
        <tr><td><label for="societe">Société: </label></td>
        <td><input type="text" name="societe" required/><br></td></tr>
        <tr><td><label for="phone">Téléphone: </label></td>
        <td><input type="text" name="phone" required/><br></td></tr>
        <tr><td><label for="email">Votre E-mail: </label></td>
    <td><input type="email" name="email" required/><br></td></tr>
    <tr><td><label for="message">Texte explicatif :</label></td><br>
        <td><textarea name="message" rows="2" cols="50" required></textarea></td></tr>
    <tr><td><input type="hidden" name="MAX_FILE_SIZE" value="10000000"> Send this file: <input name="userfile" type="file"></td></tr>
        <tr><td></td></tr>
        <tr><td align="center"><input type="submit" value="Envoyer"></td></tr></table>
</form>

PHP

<?php
            if (array_key_exists('userfile', $_FILES)) {
            $uploadfile = tempnam('upload', $_POST['nom']);
            if (move_uploaded_file($_FILES['userfile']['tmp_name'], $uploadfile.".jpg")) {
            require_once("PHPMailer/class.phpmailer.php");
            require_once('PHPMailer/PHPMailerAutoload.php');
            $mail = new PHPMailer();
            $mail->From = $_POST['email'];
            $mail->IsMail ();
            $mail->ClearAddresses ();
            $mail->AddAddress ("xxx@xxxxx.com");
            $mail->isHTML(true); // Set email format to HTML
            $mail->Subject = 'xxxxx';
            $mail->Body = '<ul>
            <li>Nom : '. $_POST['nom'] .'</li>
            <li>Prenom : '. $_POST['prenom'] .'</li>
            <li>Societe : '. $_POST['societe'] .'</li>
            <li>Telephone : '. $_POST['phone'] .'</li>
            <li>E-mail : '. $_POST['email'] .'</li>
            '.$filename;'
        </ul>';
            $mail->AltBody = 'This is the body in plain text for non-HTML mail clients';
            $mail->addAttachment($uploadfile, '');
            if(!$mail->send()) {
            $msg = "Mailer Error: " . $mail->ErrorInfo;
        } else {
            $msg = "Message sent!";
        }
    } else {
        $msg = 'Failed to move file to ' . $uploadfile;
    }
}
?>

1 个答案:

答案 0 :(得分:0)

tempnam()实际上在您调用它时会创建一个空文件。这就是它“保留”一个独特的临时文件供以后使用的方式。但是,当您致电move_uploaded_file()时,您会在结尾处附加“.jpg”。这就是为什么你有两个文件副本,一个是空的。

您在邮件的后面附上$uploadfile而不是$uploadfile.'.jpg';这就是为什么0长度文件是附加到您的电子邮件的文件。请注意,对于第二个参数,您可以根据需要为文件命名,而不是在磁盘上使用该文件的名称。在您的情况下这会更好,因为用户不会获得具有随机乱码名称的文件;相反,您可以使用$_FILES['userfile']数组中的原始名称。