Laravel Swift Mail发送带附件的邮件报错 “Swift_IoException The path cannot be empty“处理

复制代码
先说下情况,就是我要做一个发送附件的邮件发送功能,结果,报错:The path cannot be empty。

给我整的有点迷糊,网上也没有类似的问题。

后来,我检查了一下代码,发现有个地方,是需要给附件文件地址的:
php 复制代码
   /**
     * Get the mail representation of the notification.
     *
     * @param mixed $notifiable
     * @return \Illuminate\Notifications\Messages\MailMessage
     */
    public function toMail($notifiable)
    {
        return (new MailMessage)
            ->subject('获取报告发送通知')
            ->view('emails.sendReportFile',['data'=>$notifiable->data])
            ->attach($notifiable->report_url);
    }
复制代码
$notifiable->report_url就这个。

一检查这里的变量没值,所以,才导致了这个问题。

记录一下,希望有用。
相关推荐
无名修道院19 小时前
DVWA 靶场搭建:Windows11(phpstudy 搭建)(步骤 + 截图 + 常见问题)
数据库·网络安全·渗透测试·靶场·php·dvwa·phpstudy
爱倒腾的老唐1 天前
00、Altium Designer 23 使用问题记录
笔记·php
catchadmin1 天前
PHP 8.5 垃圾回收改进
php
云和数据.ChenGuang1 天前
`post_max_size`、`max_execution_time`、`max_input_time` 是 **PHP 核心配置参数**
开发语言·mysql·php·zabbix·mariadb
Evan芙1 天前
php多版本编译安装
开发语言·php
JaguarJack1 天前
PHP 8.6 即将支持部分函数应用
后端·php
云和数据.ChenGuang2 天前
PHP-FPM返回的File not found.”的本质
开发语言·php·运维工程师·运维技术
惜分飞2 天前
sql server 事务日志备份异常恢复案例---惜分飞
前端·数据库·php
qqssss121dfd2 天前
计算机网络(第8版,谢希仁)第三章习题解答
网络·计算机网络·php