我正在尝试使用PHPMailer函数附加excel文件。我正在使用服务器上的链接附加文件。它是我要附加的php文件,最初它会下载excel文件。文件正在附加,但问题是它显示的是excel文件的php代码而不是其输出。
请指导我如何从php代码中获取其输出以及附加到哪个文件以获取excel文件输出。下面是代码。
<!DOCTYPE html>
<html>
<title>Test Mail</title>
<head>
</head>
<body>
<?php
require_once('PHPMailer/class.phpmailer.php');
$email = new PHPMailer();
$email->SetFrom('sample@gmail.com', 'Talal Haider'); //Name is optional
$email->Subject = 'Test Mail';
$email->Body = 'A simple test email';
$email->AddAddress( 'sample@gmail.com' );
$file_to_attach = 'export_inspection_excel.php';
$email->AddAttachment( $file_to_attach , 'Inspection_Report.xls' );
if($email->Send()){
echo "Mail Sent";
} else{
echo "Mail Failed";
}
?>
</body>
</html>
谢谢