[Chia sẻ code] Cài đặt smtp mail bằng function.php Wordpress

by Bố cu Hoàng
0 Các bình luận

[Chia sẻ code] Cài đặt smtp mail bằng function.php Wordpress

 

Anh em có thể cài đặt theo code dưới nhé

function setup_smtp_email() {
if ( ! class_exists( ‘PHPMailer\PHPMailer\PHPMailer’ ) ) {
require_once ABSPATH . WPINC . ‘/PHPMailer/PHPMailer.php’;
require_once ABSPATH . WPINC . ‘/PHPMailer/SMTP.php’;
require_once ABSPATH . WPINC . ‘/PHPMailer/Exception.php’;
}
$mailer = new PHPMailer\PHPMailer\PHPMailer( true );
$mailer->isSMTP();
$mailer->Host = ‘smtp.gmail.com’;
$mailer->SMTPAuth = true;
$mailer->Port = 587;
$mailer->Username = ‘mail@gmail.com’;
$mailer->Password = ‘pass nhập đây’;
$mailer->SMTPSecure = ‘tls’;
$mailer->From = ‘mai@gmail.com’;
$mailer->FromName = ‘Gửi từ website flatsome.xyz’;
add_action( ‘phpmailer_init’, function( $phpmailer ) use ( $mailer ) {
$phpmailer = $mailer;
});
}
add_action( ‘init’, ‘setup_smtp_email’ );

 

Mail SMTP add function. Share by Nguyễn lân

Đánh giá post

You may also like

Adblock Detected

Please support us by disabling your AdBlocker extension from your browsers for our website. Quảng cáo là nguồn thu chính giúp chúng tôi duy trì hoạt động và mang đến nội dung miễn phí cho cộng đồng. Rất mong bạn tắt tiện ích AdBlocker khi truy cập website — sự ủng hộ của bạn giúp chúng tôi tiếp tục cải thiện và phục vụ tốt hơn mỗi ngày.