下面是我从数据库邮寄数据的代码。请帮助我进行更正。
<?
set_time_limit(0);
require("..\class\mime_mail.inc");
unlink("filename.html");
`php -q D:\Inetpub\wwwroot\abc\xyz\getdata.php > filename.html`;
$to = "abc@xyz.com";
$bcc = "abc@xyz.com";
$subject = 'aaaaaa - ' . date("Y-m-d");
$body = join('',file("filename.html"));
$headers = "Content-Type: text/html; charset=iso-8859-1\r\n";
$headers .= "From: abc@abc.com\r\n";
$headers .= "Bcc:". $bcc ." \r\n";
mail($to, $subject, $body, $headers);
?>
在上面的代码中,getdata.php 是一个从 DB 中检索数据并存储在 Excel 表中的文件。它工作正常。上面的代码是另一个名为 senddata.php 的文件。当我运行 senddata.php 时,我应该会收到邮件,但在上述情况下不会。请帮忙....