无法发送附件超过 2MB 的电子邮件

Unable to send email with attachment exceed 2MB

我正在使用 Laravel 4.2。

我的邮件服务器无法发送附件超过 2MB 的电子邮件。是否有设置最大文件大小的配置文件?

非常感谢

更改 php.ini 文件中 upload_max_filesize 和 post_max_size 的值。

Search for upload_max_filesize and post_max_size in php.ini file and change it to desired maximum filesize (100m) you need.

upload_max_filesize = 100M
post_max_size = 1000M