我尝试使用mime-> addAttachment()将附件添加到我即将发送的电子邮件
相对路径:../../clientdata/client1/attachments/file.txt
直接路径:/home/hosting/site.eu/html/ssl/clientdata/client1/attachments/file.txt
脚本位置:/home/hosting/site.eu/html/ssl/work/php_scripts/send_email.php
send_email.php使用:
执行exec("php /home/hosting/site.eu/html/ssl/work/php_scripts/send_email.php");
我在这里找不到什么东西?
用于添加附件的代码:
$f = 'ssl.site.eu/clientdata/client1/attachments/file1.txt';
$arr_file = explode('/', $f, 2);
$file_path = '/home/hosting/site.eu/html/ssl/'.$arr_file[1]; //this works
// $file_path = '../../'.$arr_file[1]; // this doesn't work;
$mime->addAttachment($file_path,'application/octet-stream');
答案 0 :(得分:3)
答案 1 :(得分:0)
如果你包含一些相对于代码执行文件的PHP文件,你必须确保相对于进程的当前目录包含这些文件,但文件中不包含当前正在执行的代码。