PHP を使用してオンザフライで CSV を作成しています。次に、この CSV ファイルを Swift Mailer Message に添付する必要があります。作成したファイルで file_get_content を使用するだけでなく、作成したファイルで chunk_split(base64_encode(file_get_contents()) を使用するだけでなく、ディスクに書き込む前にファイルを添付しようとしました。 file_get_content を使用すると、CSV ファイルの各行に文字列が 1 つだけ表示されます。何が間違っているか知っている人はいますか?
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($file);
$attachment['name'] = $order.'order';
EDIT
Mail::Send(1, 'order_conf', 'Order CSV Attachment', $success, 'test@email.com', Address, NULL, NULL, $attachment); // attach and send
}
}