add push_ok

This commit is contained in:
Your Name
2021-06-21 22:31:49 +03:00
parent 06d6336f22
commit 643e2562a9
6 changed files with 74 additions and 22 deletions

View File

@@ -68,10 +68,9 @@ function klanmail( $mail, $subject, $message, $frommail ) {
if($send->send())
$status = 'OK';
$status = true;
else {
$status = 'NO';
echo 'Mailer Error: ' . $send->ErrorInfo."\n";
$status = 'Mailer Error: ' . $send->ErrorInfo."\n";
}
return $status;