2012-04-26 79 views
2

这里是我的尝试,你能让我知道我在做什么错了吗?如何用字符串发送附件中的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); 
?> 

注:我必须使用邮件功能我没有选择(我可以用一个包装,但我宁愿不要),我不能保存在服务器端的文件。

回答

19

您可以将CSV创建代码以更简短更高效的方式轻松包装到单个功能中。

CSV文件的正确MIME类型是text/csv。此外,你应该使用字符串连接和明确\r\n序列,因为RFC的要求CRLF行分离和使用定界符/ nowdoc /有文字换行输出缓冲,你将最终获得2个问题:

  1. 您的压痕可能弄糟消息格式
  2. 经由FTP ASCII模式复制该文件可能打破行结尾

尝试此代替:

function create_csv_string($data) { 

    // Open temp file pointer 
    if (!$fp = fopen('php://temp', 'w+')) return FALSE; 

    // Loop data and write to file pointer 
    foreach ($data as $line) fputcsv($fp, $line); 

    // Place stream pointer at beginning 
    rewind($fp); 

    // Return the data 
    return stream_get_contents($fp); 

} 

function send_csv_mail ($csvData, $body, $to = '[email protected]', $subject = 'Test email with attachment', $from = '[email protected]') { 

    // This will provide plenty adequate entropy 
    $multipartSep = '-----'.md5(time()).'-----'; 

    // Arrays are much more readable 
    $headers = array(
    "From: $from", 
    "Reply-To: $from", 
    "Content-Type: multipart/mixed; boundary=\"$multipartSep\"" 
); 

    // Make the attachment 
    $attachment = chunk_split(base64_encode(create_csv_string($csvData))); 

    // Make the body of the message 
    $body = "--$multipartSep\r\n" 
     . "Content-Type: text/plain; charset=ISO-8859-1; format=flowed\r\n" 
     . "Content-Transfer-Encoding: 7bit\r\n" 
     . "\r\n" 
     . "$body\r\n" 
     . "--$multipartSep\r\n" 
     . "Content-Type: text/csv\r\n" 
     . "Content-Transfer-Encoding: base64\r\n" 
     . "Content-Disposition: attachment; filename=\"file.csv\"\r\n" 
     . "\r\n" 
     . "$attachment\r\n" 
     . "--$multipartSep--"; 

    // Send the email, return the result 
    return @mail($to, $subject, $body, implode("\r\n", $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_csv_mail($array, "Hello World!!!\r\n This is simple text email message."); 
+0

非常感谢你我得到了这一切,现在完美的工作。 (最后一行send_mail应该是send_csv_mail虽然) – 2012-04-27 06:29:19

+0

非常感谢!我以这种完全错误的方式解决这个问题,并且解决了所有问题! – 2013-10-25 18:16:37

1

这是一个更简单的解决方案,用于创建用于通过phpmailer向附件发送电子邮件的csv。

$csvinfo .= "$row[0],$row[1],$row[2],$row[3]\n"; 
$attachment = "details.csv"; 
file_put_contents($attachment, $csvinfo, LOCK_EX); 

及相关PHPMailer的线路发送一封电子邮件,附件

$mail = new PHPMailer; 
$mail->isSMTP();    // Set mailer to use SMTP 
$mail->Host = 'x';   // Specify main and backup SMTP servers 
$mail->SMTPAuth = true;  // Enable SMTP  authentication 
$mail->Username = 'xx';  // SMTP username 
$mail->Password = 'xx';   // SMTP password 
$mail->SMTPSecure = 'tls';  // Enable TLS or SSL also accepted 
$mail->Port = 587;    // TCP port to connect to 
$mail->setFrom('[email protected]', 'Lily'); 
$mail->AddAddress("[email protected]"); 
$mail->addAttachment($attachment);   // Add attachments 
$mail->isHTML(true);    // Set email format to HTML 
$mail->Subject = "Report"; 
$mail->Body = $message; 

if(!$mail->send()) { 
    echo 'Message could not be sent.'; 
    echo 'Mailer Error: ' . $mail->ErrorInfo; 
} else { 
    echo 'Message has been sent'; 
} 
相关问题