我正在尝试使用PHP发送.CSV文件。文件在发送之前写入磁盘,但是当我尝试使用file_get_contents()附加文件时;当尝试发送在发送之前创建的文件时,.CSV的结构还没有预先设置我获得了资源ID(#183)所以如何附加用户可以打开的文件作为.CSV文件?我已经确定mime类型和标题是正确的
修改
if(!file_exists(_PS_ORDERS_DIR_.$orderDate.'/'.$file_name.'.csv'))
{
if($file = fopen (_PS_ORDERS_DIR_.$orderDate.'/'.$file_name.'.csv', 'x+'))
{
foreach ($list as $fields)
{
fputcsv($file, $fields);
}
$attachment['mime'] = 'application/vnd.ms-excel';
$attachment['content'] = file_get_contents(_PS_ORDERS_DIR_.$orderDate.'/'.$file_name.'.csv');
$attachment['name'] = $order.'order';
Mail::Send(1, 'order_conf', 'Order CSV Attachment', $success, 'dan.farr@gmail.com', CakeToppers, NULL, NULL, $attachment);
return true;
}
答案 0 :(得分:1)
如果您使用的是Swift Mailer,则无需file_get_contents()
,您只需attach the file directly。
来自Swift Mailer文档:
//Create the attachment
// * Note that you can technically leave the content-type parameter out
$attachment = Swift_Attachment::fromPath('/path/to/image.jpg', 'image/jpeg');
//Attach it to the message
$message->attach($attachment);
所以对你来说就是:
$attachment = Swift_Attachment::fromPath(_PS_ORDERS_DIR_.$orderDate.'/'.$file_name.'.csv', 'application/vnd.ms-excel');
//Attach it to the message
$message->attach($attachment);