php PHP Mailer WP
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php PHP Mailer WP相关的知识,希望对你有一定的参考价值。
<?php
/**
* This function will connect wp_mail to your authenticated
* SMTP server. This improves reliability of wp_mail, and
* avoids many potential problems.
*/
function send_smtp_email($phpmailer) {
$phpmailer->isSMTP();
$phpmailer->isHTML(true);
$phpmailer->Host = "smtp.gmail.com";
$phpmailer->SMTPAuth = true; // uncomment for gmail
$phpmailer->Port = 587;
$phpmailer->Username = "";
$phpmailer->Password = "";
$phpmailer->SMTPSecure = "tls"; // uncomment for gmail
//$phpmailer->From = FROM;
//$phpmailer->FromName = FROMNAME;
//$phpmailer->SMTPDebug = 2; // uncomment for full debug
}
add_action( 'phpmailer_init', 'send_smtp_email' );
以上是关于php PHP Mailer WP的主要内容,如果未能解决你的问题,请参考以下文章
警告:require_once(./mailer/class.phpmailer.php):打开流失败:
php mailer Mailer 错误:无法加载语言字符串:connect_host?
PHP-Mailer代码
使用配置 PHP 文件和 PHP Mailer 将电子邮件发送到多个地址
尝试使用 swift mailer、gmail smtp、php 发送邮件
来自 php 表单的问题/错误,用于使用 php-mailer 库通过本地主机 Xampp 发送电子邮件