Mailinglisten-Archive |
>Das mit dem $header.="Bcc: a_(at)_a.de" als Headerzusatz hat übrigens nicht >geklappt :( Ich bekomme keine Blindcopy :( Keine Ahnung ob es dir hilft, aber hier sind ein paar User, die früher schonmal das Problem hatten. Vielleicht kommst du ja damit auf die Lösung. Ich selbst hatte das Problem noch nie. isthar_(at)_yahoo.com 27-Jul-2000 10:49 Of course bcc won't work with mail() sometimes! >From 'man sendmail': "... -t Read message for recipients. To:,Cc:, and Bcc: lines will be scanned for recipient addresses. The Bcc: line will be deleted before transmission. ..." and -t is the default option for php... npy_(at)_nicolas.net 17-Sep-1999 03:05 My rewrite of the mail function: function n_mail( $from, $to , $subject,$core_msg, $add_header) { $cmd_line=sprintf("/usr/sbin/sendmail -r %s -t",$from); $fp=popen($cmd_line,"w"); $temp=sprintf("To: %s\n",$to); $len=strlen($temp); $ret_p=fputs($fp,$temp,$len); $temp=sprintf("Subject: %s\n",$subject); $len=strlen($temp); $ret_p=fputs($fp,$temp,$len); if ($add_header != "") { $temp=sprintf("%s\n",$add_header); $len=strlen($temp); $ret_p=fputs($fp,$temp,$len); } $temp=sprintf("\n%s\n",$core_msg); $len=strlen($temp); $ret_p=fputs($fp,$temp,$len); pclose($fp); } There are no tests here ... not enought place but testing the returns is better ....
php::bar PHP Wiki - Listenarchive