setFrom("admin@assecutor.de"); // $mailObj->setCc($mailCcAddress); // $mailObj->setBcc($mailBccAddress); $mailObj->setSubject("VOTIAN - INTERNE MELDUNG!"); // PLAIN-TEXT $mailtext = "<" . $errMsg . ">"; if ($errMsg == "metaobject_db_fail") : $mailtext .= " - " . "METAOBJECT-DATENBANK VERMUTLICH NICHT ERREICHBAR!"; endif; $mailObj->setText($mailtext); $mailResult = $mailObj->send(array("dev@assecutor.de"), 'smtp'); if ($mailResult) : writeToInternalMailLogFile("test_internal_mail.log", "MAIL SENT!"); else : writeToInternalMailLogFile("test_internal_mail.log", "MAIL NOT SENT!"); endif; $mailObj = NULL; writeToInternalMailLogFile("test_internal_mail.log", "---------------------------------------------------"); endif; ?>