web-dev-qa-db-ja.com

新しいユーザーのメールテンプレートを変更する方法

新しい顧客を追加すると、電子メールは次の形式で新しいユーザーに送信されます。

From: WordPress [[email protected]]
Subject: [site name] Your user name and password
Message:
         username: user
         Password: password
         siteurl.com/wp-login.php

今、私はこのようにこのフォーマットを変更したいです。

From: My Site Name [[email protected]]
Subject: siteurl.com customer account activated
Message:
       Your customer account has been activated.

       Your Login credentials are:

       Username: user email
       Password: password

       Thanks,
       abcd

私は試してみました この答え /しかしうまくいきません。

これどうやってするの?

10
deemi-D-nadeem

2018年以降のユーザーの場合:

David Gardの答えはまだ機能しますが古く、これを行うための新しいより良い/よりクリーンな方法があります(もうプラグインの必要はありません)。

WordPress 4.9.0以降、登録メールをカスタマイズするために使用できる新しいフィルタがあります。

管理者に送信されたEメールの使用例(テーマの functions.php に貼り付けることができます):

add_filter( 'wp_new_user_notification_email_admin', 'custom_wp_new_user_notification_email', 10, 3 );

function custom_wp_new_user_notification_email( $wp_new_user_notification_email, $user, $blogname ) {
    $wp_new_user_notification_email['subject'] = sprintf( '[%s] New user %s registered.', $blogname, $user->user_login );
    $wp_new_user_notification_email['message'] = sprintf( "%s ( %s ) has registerd to your blog %s.", $user->user_login, $user->user_email, $blogname );
    return $wp_new_user_notification_email;
}
15
Edu Wass

新しいユーザーへの通知Eメールは、 wp-includes/plugable.php にある関数wp_new_user_notification()によって作成され送信されます。

この関数には電子メールの出力を操作するためのフィルタフックはありませんが、プラグインを介してプラグ可能な関数を上書きすることはもちろん可能です。

- あなたのテーマ内からではなく、プラグイン内からのみプラガブル関数を上書きできます。

プラグイン可能な関数の詳細と利用可能な完全なリストはこちらをご覧ください - http://codex.wordpress.org/Pluggable_Functions

このコードは wp-includes/plugable.php にあるプラグインの代わりに使用されるプラグインを作成します( wp-content/plugins/ にあるそれ自身のファイルに保存します)。

私はあなたのためにそれをカスタマイズしませんでした、しかしこれはあなたの方法であなたを得るべきです。

<?php
/**
 * Plugin Name: Custom new user notification email
 * Description: Overwrites the pluggable 'wp_new_user_notification()' plugin to allow the sending of a custom email
 * Author: David Gard
 * Version: 1.0
 */

if ( !function_exists('wp_new_user_notification') ) :
/**
 * Pluggable - Email login credentials to a newly-registered user
 *
 * A new user registration notification is also sent to admin email.
 *
 * @since 2.0.0
 *
 * @param int    $user_id        User ID.
 * @param string $plaintext_pass Optional. The user's plaintext password. Default empty.
 */
function wp_new_user_notification($user_id, $plaintext_pass = ''){

    $user = get_userdata($user_id);

    // The blogname option is escaped with esc_html on the way into the database in sanitize_option
    // we want to reverse this for the plain text arena of emails.
    $blogname = wp_specialchars_decode(get_option('blogname'), ENT_QUOTES);

    $message  = sprintf(__('New user registration on your site %s:'), $blogname) . "\r\n\r\n";
    $message .= sprintf(__('Username: %s'), $user->user_login) . "\r\n\r\n";
    $message .= sprintf(__('E-mail: %s'), $user->user_email) . "\r\n";

    @wp_mail(get_option('admin_email'), sprintf(__('[%s] New User Registration'), $blogname), $message);

    if ( empty($plaintext_pass) )
        return;

    $message  = sprintf(__('Username: %s'), $user->user_login) . "\r\n";
    $message .= sprintf(__('Password: %s'), $plaintext_pass) . "\r\n";
    $message .= wp_login_url() . "\r\n";

    wp_mail($user->user_email, sprintf(__('[%s] Your username and password'), $blogname), $message);

}
endif;
7
David Gard

マルチサイト設定を参照している場合、これはデータベースの2つのセクションに設定されているテンプレートを介して設定できます。

ウェルカムメール

そして

ようこそユーザーのメールアドレス

http://yoursite/wp-admin/network/settings.php

好みに合わせてカスタマイズできます。

1
Richard Dinh