-3

我正在使用 phpmailler 发送邮件,邮件成功但没有附件。我想发送带有附件的邮件。我试过这段代码。

提前致谢。

$s2="select * from tbl_new_user where login_name='".$rw['clientname']."'";
$q2=mysql_query($s2) or die($s2);
$row=mysql_fetch_array($q2);

$s22="select * from tbl_job_schedule where clientname='".$rw['clientname']."' and jobdate='".$_SESSION['strmonth']."-".$_REQUEST['dt']."-".$_SESSION['yy']."'";
$q22=mysql_query($s22) or die($s22);
$row2=mysql_fetch_array($q22);  

$mail = new PHPMailer;

$mail->IsSMTP();                                      // Set mailer to use SMTP
$mail->Host = 'smtpout.secureserver.net';  // Specify main and backup server
$mail->Port = '80';
$mail->SMTPAuth = true;                               // Enable SMTP authentication
$mail->Username = 'username';                            // SMTP username
$mail->Password = 'password';                           // SMTP password
$mail->SMTPSecure = '';                            // Enable encryption, 'ssl' also accepted
$mail->SMTPDebug = 1;

$mail->From = 'abc@abc.com';
$mail->FromName = 'abc@abc.com';
$mail->AddAddress($row['client_email'], '');  // Add a recipient
$mail->AddAddress($row['client_email2']);     // Name is optional
$mail->AddAddress($row['client_email3']);
$mail->AddAddress($row['client_email4']);
$mail->AddAddress($row['client_email5']);
$mail->AddAddress($row['client_email6']);
$mail->AddReplyTo('info@example.com', 'Information');
//$mail->AddCC('cc@example.com');
//$mail->AddBCC('bcc@example.com');

$mail->WordWrap = 50;      
                           // Set word wrap to 50 characters
if($row2['file1']!='')
{                          
$mail->AddAttachment('kurtacompany/techreporting/upload/'.$row2['file1'].'');         // Add attachments
}

if($row2['file2']!='')
{                          
$mail->AddAttachment('kurtacompany/techreporting/upload/'.$row2['file2'].'');         // Add attachments
}

if($row2['file3']!='')
{                          
$mail->AddAttachment('kurtacompany/techreporting/upload/'.$row2['file3'].'');         // Add attachments
}

if($row2['file4']!='')
{                          
$mail->AddAttachment('kurtacompany/techreporting/upload/'.$row2['file4'].'');         // Add attachments
}

if($row2['file5']!='')
{                          
$mail->AddAttachment('kurtacompany/techreporting/upload/'.$row2['file5'].'');         // Add attachments
}

if($row2['file6']!='')
{                          
$mail->AddAttachment('kurtacompany/techreporting/upload/'.$row2['file6'].'');         // Add attachments
}

if($row2['file7']!='')
{                          
$mail->AddAttachment('kurtacompany/techreporting/upload/'.$row2['file7'].'');         // Add attachments
}

if($row2['file8']!='')
{                          
$mail->AddAttachment('kurtacompany/techreporting/upload/'.$row2['file8'].'');         // Add attachments
}

if($row2['file9']!='')
{                          
$mail->AddAttachment('kurtacompany/techreporting/upload/'.$row2['file9'].'');         // Add attachments
}
if($row2['file10']!='')
{                          
$mail->AddAttachment('kurtacompany/techreporting/upload/'.$row2['file10'].'');         // Add attachments
}



//$mail->AddAttachment('/tmp/image.jpg', 'new.jpg');    // Optional name
$mail->IsHTML(true);                                  // Set email format to HTML

$mail->Subject = 'Reporting';
$mail->Body    = '<p>This is an automated email report for the work done today.

Below are the comments showing on what we have worked,if you have any questions please go to the reporting URL provided and update your comment or can send a separate email to me directly on my email ID provided.</p>


<b>Work Comments : "'.$row2['client_cmnt'].'"</b>';
$mail->AltBody = '';

if(!$mail->Send()) {
   echo 'Message could not be sent.';
   echo 'Mailer Error: ' . $mail->ErrorInfo;
   exit;
}

echo 'Message has been sent';

            echo "<script>window.close()</script>";

}
4

1 回答 1

-1

确保您用于附件的路径有效。

即文件是否存在于kurtacompany/techreporting/upload/'.$row2['file3']

它可能很简单,就像您/从一开始就缺少 a 以指示它应该从根目录开始搜索。如有疑问,请尝试绝对链接以确认:

http://www.mywebsite.com/kurtacompany/techreporting/upload/'.$row2['file3']

于 2013-07-29T12:17:23.327 回答