laravel 4.2发送电子邮件显示附件的自定义名称

时间:2016-05-11 04:13:07

标签: php mysql email laravel-4 attachment

我有以下代码:

.

The email I received shows the value in files.filename

是否可以显示我放在files.name中的值?

1 个答案:

答案 0 :(得分:1)

试试这个;)

$message->attach('path_to_pdf_file', array(
    'as' => 'name to display.pdf', 
    'mime' => 'application/pdf'));