我在这里寻找解决方案,但没有找到任何东西。
我的代码:
<?php
require_once('PHPMailer_5.2.4/class.phpmailer.php');
$email = new PHPMailer();
$email->From = 'my email address';
$email->FromName = 'my name';
$email->Subject = 'Possible positions';
$email->Body = 'To whom this may concern';
$email->AddAddress( 'the to address' );
$file_to_attach = '/';
$email->AddAttachment( $file_to_attach , 'Corporate.docx');
return $email->Send();
?>
该文件位于我的root目录中,与我在cronjob中运行的auto-email.php文件相同。 cronjob运行正常,它只是没有附加我的文件