這裏是我的嘗試,你能讓我知道我在做什麼錯了嗎?如何用字符串發送附件中的CSV附件的電子郵件
allputcsv將數組轉換爲csv格式的字符串。這是base64編碼和塊拆分,這似乎適用於正常的文件,但有什麼不同,我應該做的,因爲我使用的是字符串?
<?php
function sputcsv($row, $delimiter = ',', $enclosure = '"', $eol = "\n")
{
static $fp = false;
if ($fp === false)
{
$fp = fopen('php://temp', 'r+');
}
else
{
rewind($fp);
}
if (fputcsv($fp, $row, $delimiter, $enclosure) === false)
{
return false;
}
rewind($fp);
$csv = fgets($fp);
if ($eol != PHP_EOL)
{
$csv = substr($csv, 0, (0 - strlen(PHP_EOL))) . $eol;
}
return $csv;
}
function allputcsv($arr) {
$str = "";
foreach($arr as $val) {
$str .= sputcsv($val);
}
return $str;
}
function send_mail($arr) {
$to = '[email protected]';
$subject = 'Test email with attachment';
$random_hash = md5(date('r', time()));
$headers = "From: [email protected]\r\nReply-To: [email protected]";
$headers .= "\r\nContent-Type: multipart/mixed; boundary=\"--".$random_hash."\"";
$attachment = chunk_split(base64_encode(allputcsv($arr)));
ob_start();
?>
--<?php echo $random_hash; ?>
Content-Type: text/plain; charset=ISO-8859-1; format=flowed
Content-Transfer-Encoding: 7bit
Hello World!!!
This is simple text email message.
--<?php echo $random_hash; ?>
Content-Type: application/vnd.ms-excel;
name="test.csv"
Content-Transfer-Encoding: base64
Content-Disposition: attachment;
filename="test.csv"
<?php echo $attachment; ?>
--<?php echo $random_hash; ?>--
<?php
$message = ob_get_clean();
$mail_sent = @mail($to, $subject, $message, $headers);
}
$array = array(array(1,2,3,4,5,6,7),array(1,2,3,4,5,6,7),array(1,2,3,4,5,6,7));
send_mail($array);
?>
注:我必須使用郵件功能我沒有選擇(我可以用一個包裝,但我寧願不要),我不能保存在服務器端的文件。
非常感謝你我得到了這一切,現在完美的工作。 (最後一行send_mail應該是send_csv_mail雖然) – 2012-04-27 06:29:19
非常感謝!我以這種完全錯誤的方式解決這個問題,並且解決了所有問題! – 2013-10-25 18:16:37