parent
f19e186cd3
commit
3b35e88a9f
|
@ -1,6 +1,10 @@
|
||||||
<?php
|
<?php
|
||||||
include_once('../lib/phpmailer/PHPMailer.php');
|
use PHPMailer\PHPMailer\PHPMailer;
|
||||||
include_once('../lib/phpmailer/SMTP.php');
|
use PHPMailer\PHPMailer\SMTP;
|
||||||
|
|
||||||
|
include_once('lib/phpmailer/Exception.php');
|
||||||
|
include_once('lib/phpmailer/PHPMailer.php');
|
||||||
|
include_once('lib/phpmailer/SMTP.php');
|
||||||
|
|
||||||
$statement = $RUNTIME['PDO']->prepare("CREATE TABLE IF NOT EXISTS im_offline_send (`id` int(6) NOT NULL DEFAULT 0) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci");
|
$statement = $RUNTIME['PDO']->prepare("CREATE TABLE IF NOT EXISTS im_offline_send (`id` int(6) NOT NULL DEFAULT 0) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci");
|
||||||
$statement->execute();
|
$statement->execute();
|
||||||
|
|
Loading…
Reference in New Issue