$firmendatenid=$app->DB->Select("SELECT MAX(id) FROM firmendaten LIMIT 1");
$benutzername=$app->DB->Select("SELECT benutzername FROM firmendaten WHERE id='".$firmendatenid."' LIMIT 1");
$passwort=$app->DB->Select("SELECT passwort FROM firmendaten WHERE id='".$firmendatenid."' LIMIT 1");
$host=$app->DB->Select("SELECT host FROM firmendaten WHERE id='".$firmendatenid."' LIMIT 1");
$port=$app->DB->Select("SELECT port FROM firmendaten WHERE id='".$firmendatenid."' LIMIT 1");
$mailssl=$app->DB->Select("SELECT mailssl FROM firmendaten WHERE id='".$firmendatenid."' LIMIT 1");
$noauth=$app->erp->Firmendaten("noauth");
$app->mail=newPHPMailer($app);
$app->mail->CharSet="UTF-8";
//$app->mail->PluginDir="plugins/phpmailer/";
$app->mail->IsSMTP();
if($noauth=="1")$app->mail->SMTPAuth=false;
else$app->mail->SMTPAuth=true;
if($mailssl)
$app->mail->SMTPSecure="ssl";// sets the prefix to the servier
$app->mail->Host=$host;
$app->mail->Port=$port;// set the SMTP port for the GMAIL server
$app->mail->Username=$benutzername;
$app->mail->Password=$passwort;
$shop=5;
//$app->DB->Update("UPDATE artikel SET hersteller='OLIMEX' WHERE hersteller='Olimex Ltd.'");
//exit;
$shopartikel=$app->DB->SelectArr("SELECT id,name_de,nummer FROM artikel WHERE shop='$shop' OR shop2='$shop' OR shop3='$shop' AND geloescht!='1' AND inaktiv!='1'");