如何更改默认电子邮件wordpress的密码?

时间:2015-11-03 21:19:18

标签: wordpress email passwords smtp

我的网站Wordpress存在很大问题,我更改了默认邮件wordpress的密码(第一次安装wordpress中使用的邮件)。 现在不可能向新用户发送邮件而不是在我的网站上登录。

如何更改wordpress中的密码,默认邮件? 发送电子邮件的配置文件(SMTP用户和密码)在哪里?

问候。

1 个答案:

答案 0 :(得分:0)

我找到了解决方案

以下是一个代码段示例,其中包含用于配置WordPress以发送SMTP电子邮件的每个设置的注释:

add_action( 'phpmailer_init', 'send_smtp_email' );
function send_smtp_email( $phpmailer ) {

// Define that we are sending with SMTP
$phpmailer->isSMTP();

// The hostname of the mail server
$phpmailer->Host = "smtp.example.com";

// Use SMTP authentication (true|false)
$phpmailer->SMTPAuth = true;

// SMTP port number - likely to be 25, 465 or 587
$phpmailer->Port = "587";

// Username to use for SMTP authentication
$phpmailer->Username = "yourusername";

// Password to use for SMTP authentication
$phpmailer->Password = "yourpassword";

// Encryption system to use - ssl or tls
$phpmailer->SMTPSecure = "tls";

$phpmailer->From = "you@yourdomail.com";
$phpmailer->FromName = "Your Name";
}

要使用此代码段,您需要根据电子邮件服务要求调整设置。请咨询您的主人。 该片段一旦配置,就可以添加到主题的functions.php文件中。