我尝试将文件对象附加到邮件对象。
我以我的观点形式包括以下内容:
$f = new Concrete\Core\Application\Service\FileManager();
//...
echo $f->file('file', 'test', 'pls choose');
然后我将表单提交给控制器。那里(BTW所有其他表格字段按预期到达控制器)我这样做:
$files = $this->post('test');
$file = \File::getByID($files);
应该返回一个File对象。当我做的时候
$file = \File::getRelativePathFromID($files);
它为我提供了所选文件的正确路径。
到目前为止一切顺利。但是当我尝试发送邮件时附带的文件对象:
$mail = Loader::helper('mail');
$mail->setTesting(false);
$mail->setSubject('test-subject');
$mail->to($this->post('uEmail'));
//...
$attach = $mail->addAttachment($file);
$attach->filename = 'tttt';
$mail->sendMail();
发生以下错误:
call_user_func_array()期望参数1是有效的回调, class'Concrete \ Core \ File \ Version'没有方法'getPath'
显然来自这个类方法(API):
namespace Concrete\Core\Mail;
//...
class Service {
//...
/**
* Add attachment to send with an email.
*
* Sample Code:
* $attachment = $mailHelper->addAttachment($fileObject);
* $attachment->filename = "CustomFilename";
* $mailHelper->send();
*
* @param File $fob File to attach
* @return StdClass Pointer to the attachment
*/
public function addAttachment(\Concrete\Core\File\File $fob)
{
// @TODO make this work with the File Storage Locations
$fv = $fob->getVersion();
$path = $fob->getPath();
$name = $fv->getFileName();
//...
}
//...
}
显然想要一个文件对象作为参数,我想我通过了,不是我吗? 为什么我的文件对象变成了一个FileVersion对象,正如我自己看到的那样,它没有getPath()方法。
到目前为止我的其他试验:
$fv = $f->getApprovedVersion();
$fv->setFile($f);
$fv->getFile();
$fv = $f->getRecentVersion();
$fv->setFile($f);
$fv->getFile();
如何获取正确的文件对象,我必须(可能)(??),取出该文件的最后一个/批准版本?