hy...
wenn ich Folgenen Code ausführe kommt bei mir diese Fehlermeldung.
Warning: Variable passed to each() is not an array or object in d:\wwwroot\ogc-clan\smtp\smtp.class.inc on line 115
Warning: implode() [function.implode]: Bad arguments. in d:\wwwroot\ogc-clan\smtp\smtp.class.inc on line 125
ich allerdings bin mir sicher das der Code so richtig ist !!!
na schaut einfach mal selbst...
weis da jemand was drüber ???
cya Jointy
wenn ich Folgenen Code ausführe kommt bei mir diese Fehlermeldung.
Warning: Variable passed to each() is not an array or object in d:\wwwroot\ogc-clan\smtp\smtp.class.inc on line 115
Warning: implode() [function.implode]: Bad arguments. in d:\wwwroot\ogc-clan\smtp\smtp.class.inc on line 125
ich allerdings bin mir sicher das der Code so richtig ist !!!
na schaut einfach mal selbst...
PHP-Code:
if(!is_array($mailto)){
$mailto=explode(",",$mailto);
}
print_r($mailto); // kommt raus " Array ( [0] => [email]hempcluster@gmx.net[/email] ) "
while(list(,$mailto_address) = each( $mailto )){
echo $mailto_address; // kommt raus "hempcluster@gmx.net"
if($mailto_address!=""){
$mailto=trim($mailto);
if(!preg_match( '/.+@.+/',$mailto_address)){
return $this->error = "Diese Empfänger Addresse ist im falschen Format Error:".$mailto_address;
}
}
unset($mailto_address);
}
$mailto=implode(",",$mailto);
$this->header .="To: <".$mailto."> \r\n";
cya Jointy
Kommentar