我正在尝试发送附件文件的电子邮件,当我使用外部链接时,它可以正常工作:
public function build()
{ return $this->view('email.test') ->attach("otherwebsite.com/file.pdf"); }
但是当我尝试发送存储在我的存储文件夹中的文件时:
public function build()
{ return $this->view('email.test') ->attach("mydomainename.com/storage/file.pdf"); }
,它抛出了一个Eroor:
Swift_IoException in FileByteStream.php line 144: Unable to open file for reading
我已经生成了一个Storage:LINK,允许我访问存储文件夹,我可以通过url访问它(mydomainenname.com/storage/file.pdf),
请帮帮我,我该怎么办?已经3天了,我试图解决这个问题但没有找到:/