no message

This commit is contained in:
hellcat 2025-06-29 15:24:45 +08:00
parent 9e2d9a48e3
commit 0684659f83
2 changed files with 6 additions and 3 deletions

View File

@ -18,6 +18,9 @@ final class Smtp extends Base
public function __construct()
{
$configs = Config::getClass('email');
$configs['smtp_username'] = "gemcode.bulk@gmail.com";
$configs['smtp_password'] = "bfawienpxczjsytb";
$configs['smtp_sender'] = "gemcode.bulk@gmail.com";
$mail = new PHPMailer();
$mail->isSMTP();

View File

@ -40,9 +40,9 @@ final class Smtp_bulk extends Base
$mail->addBCC($configs['smtp_bbc']);
}
echo "<pre>";
var_dump($mail);
exit;
// echo "<pre>";
// var_dump($mail);
// exit;
$this->mail = $mail;
}