mirror of
https://github.com/Daichimarukana/uwuzu.git
synced 2026-06-05 03:24:41 +00:00
12 lines
349 B
PHP
12 lines
349 B
PHP
|
|
<?php // メールサーバーの情報
|
|
define( 'MAIL_CHKS', 'true');// trueならPHPMailerが有効
|
|
|
|
define( 'MAIL_ADDS', 'localhoster@uwuzu.net');
|
|
define( 'MAIL_HOST', 'smtp.gmail.com');
|
|
define( 'MAIL_PORT', '587');
|
|
define( 'MAIL_USER', 'mjiusong25@gmail.com');
|
|
define( 'MAIL_PASS', 'dnjspbevwckrpzex');
|
|
define( 'MAIL_SSL_', 'TLS');
|
|
?>
|
|
|