6

可以使用以下行通过 API 创建新用户:

$user_id = wp_insert_user( $user_data );

我想知道如何向新创建的用户发送一封包含其密码的电子邮件?Wordpress API 中是否有任何功能可以处理这项工作,或者我应该自己创建和发送电子邮件?

4

3 回答 3

31

正如大卫猜测的那样(但没有具体说明),Wordpress 中有一些功能可以做到这一点:wp_new_user_notification($user_id, $user_pass).

所以,重写上面的代码,它应该是这样的(代码在 4.3.1 参数弃用后被编辑):

$user_id = wp_insert_user( $user_data );
wp_new_user_notification( $user_id, null, 'both' );

编辑:另请参阅下面的@ale 评论。

于 2013-02-20T16:08:52.473 回答
7

我假设您正在生成密码并将其添加到$user_data数组中?

如果没有,您可以使用它来生成密码 -

$this->password = wp_generate_password(6, false);
$user_data['user_pass'] = $this->password;

虽然可能有一种方法可以连接到通用 WP 发送密码电子邮件,但我只是使用自己的方法。这样,我可以自定义内容,让它看起来像我网站上的其他电子邮件。

请注意,我已经设置了一个注册类,所以如果你没有,你需要删除$this->.

function prepare_email(){

        $confirmation_to = $_REQUEST['email_address'];
        $confirmation_subject = 'Confirmation - Registration to My Site';
        $confirmation_message = 'Hi '.$_REQUEST['first_name'].',<br /></br />Thank you for registering with My Site. Your account has been set up and you can log in using the following details -<br /><br />'
            .'<strong>Username:</strong> '.$_REQUEST['username']
            .'<br /><strong>Password:</strong> '.$this->password
            .'<br /><br />Once you have logged in, please ensure that you visit the Site Admin and change you password so that you don\'t forget it in the future.';
        $headers = 'MIME-Version: 1.0'."\r\n";
        $headers.= 'Content-type: text/html; charset=iso-8859-1'."\r\n";
        $confirmation_headers = $headers.'From: My Site <no-reply@mysite.com>'."\r\n";

        $this->form_for_email = compact('confirmation_to', 'confirmation_subject', 'confirmation_message', 'confirmation_headers');

    }
于 2012-11-22T09:59:33.820 回答
0

接受的答案现在已过时。使用的答案wp_new_user_notification()有效,并将发送类似 WordPress 的邮件。

不过,您可能希望按照 David Gard 的建议发送自己的邮件。这是执行此操作的一些代码。您可以将其用作函数,也可以用作类中的方法。

/**
 * Send mail with a reset password link
 *
 * @param  int $user_id  User ID
 */
function notify_new_user( $user_id )
{
    $user = get_userdata( $user_id );

    $subject   = '[website] Connection details';
    $mail_from = get_bloginfo('admin_email');
    $mail_to   = $user->user_email;
    $headers   = array(
        'Content-Type: text/html; charset=UTF-8',
        'From: ' . $mail_from,
    );

    $key = get_password_reset_key( $user );
    if ( is_wp_error( $key ) ) {
        return;
    }
    $url_password = network_site_url( "wp-login.php?action=rp&key=$key&login=" . rawurlencode( $user->user_login ) );

    $body = '<p>HTML body in your own style.</p>';
    $body .= '<p>It must include the login identifier: ' . $user->user_login . '</p>';
    $body .= '<p>And the link: ' . $url_password . '</p>';
    
    wp_mail( $mail_to, $subject, $body, $headers );
}

如果您不想在函数中包含 HTML 内容,可以使用模板引擎。这是您可以添加到上述代码中的示例。

// Set up Mustache
$path = get_stylesheet_directory() . '/mails';
$dir  = wp_get_upload_dir();
$m    = new \Mustache_Engine( [
    'cache'           => $dir['basedir'] . '/mustache_cache',
    'loader'          => new \Mustache_Loader_FilesystemLoader( $path ),
    'partials_loader' => new \Mustache_Loader_FilesystemLoader( $path . '/layouts' ),
] );

// Variable data in the mail
$data['mail']['title'] = $subject;          // {{mail.title}}
$data['identifier']    = $user->user_login; // {{identifier}}
$data['url-password']  = $url_password;     // {{url-password}}

$body = $m->render( 'mail-template-new-user', $data );

小胡子标签文档

于 2021-02-13T17:08:15.093 回答