如何为wordpress网站创建SMTP凭据?

时间:2017-11-10 09:53:55

标签: wordpress smtp

我不知道SMTP邮件服务器。我需要我的wordpress网站的凭据来获取表单数据。任何人都可以解释这个 enter image description here

2 个答案:

答案 0 :(得分:0)

Wordpress希望使用SMTP邮件服务器发送电子邮件。由于您没有,您可以使用Google的邮件服务器(have a look here on how to)。

答案 1 :(得分:0)

试试这个插件https://wordpress.org/plugins/blastex/ 并发送没有本地smtp服务器的电子邮件:)

< ?php
!!! Enable first in php.ini config file socket extension. Read more in plugin admin panel after activation !!!

$to = 'hello@emal.com, hello@boom.com';
$subject 'Hello from email client';
$html = 'Hello message from smtp !!!

Message from wordpress plugin!

';

// Install and activate plugin and send emails
$ok = wp_mail($to, $subject, $html);

// Show error
echo get_option('blastex_error');

?>