0

我正在尝试使用 PHPMailer 向我的服务器上存在的文件发送电子邮件。当我运行此代码时,我得到“无法访问文件”并且电子邮件发送时没有附件......这里有什么问题?

<html>
<title>Email Sent!</title>
<?php 
        include("menu.php");
        include("sqlconnect.php");
        require_once('../PHPMailer/class.phpmailer.php');

        $path = $_POST['path'];
        $filename = $_POST['filename'];
        $newpath = "Library/WebServer/Documents/Inventory/".$path;

define('GUSER', 'xxxxxxx@gmail.com'); // GMail username
define('GPWD', 'xxxxxxx'); // GMail password


function smtpmailer($to, $from, $from_name, $subject, $body) { 
    global $error;
    $mail = new PHPMailer();  // create a new object
    $mail->IsSMTP(); // enable SMTP
    $mail->SMTPDebug = 0;  // debugging: 1 = errors and messages, 2 = messages only
    $mail->SMTPAuth = true;  // authentication enabled
    $mail->SMTPSecure = 'ssl'; // secure transfer enabled REQUIRED for GMail
    $mail->Host = 'smtp.gmail.com';
    $mail->Port = 465; 
    $mail->Username = GUSER;  
    $mail->Password = GPWD;           
    $mail->SetFrom($from, $from_name);
    $mail->Subject = $subject;
    $mail->Body = $body;
    $mail->AddAddress($to);
    $attachtest = $mail->AddAttachment($newpath);   
    if(!$mail->Send()) {
        $error = 'Mail error: '.$mail->ErrorInfo; 
        return false;
    } else {
        $error = 'Message sent!';
        return true;
    }
}

smtpmailer('xxxxxxx@me.com', 'xxxxxxxx@gmail.com', 'Name', 'test mail message', 'Hello World!');

?>
</html>
4

3 回答 3

1

尝试像这样将正确的路径传递给您的函数

function smtpmailer($to, $from, $from_name, $subject, $body, $newpath)

并称它为

 smtpmailer('xxxxxxx@me.com', 'xxxxxxxx@gmail.com', 'Name', 'test mail message', 'Hello World!', $newpath);
于 2012-07-01T09:01:22.697 回答
0

确保运行 Apache 和 PHP 的用户/组至少对文件具有 READ 权限。

如果您在服务器上工作并以其他用户身份使用 sFTP/SSH 上传文件,则此问题很常见。

找出正在运行 apache/php 的用户和组,并授予该用户和组对您尝试附加的文件的读取权限。

于 2012-07-01T08:22:13.323 回答
0

我遇到了同样的问题。

我需要在我的 php 脚本中运行一个额外的命令,将 move_uploaded_file() 从我的主机家中移动到一个内部目录,然后现在我可以发送附件。

我的提示对我很有效:)

于 2013-07-29T22:29:06.710 回答