web-dev-qa-db-ja.com

カスタム投稿に新しいコメントが投稿された場​​合 - カスタムフィールドからカスタムメールに通知を送信する

カスタム投稿タイプ "Art master"を持っています。各投稿はマスターのプロフィールです。

それらのプロファイルでは、カスタムフィールド名 "master_email"が設定されています。新しいコメントが投稿された場​​合は毎回マスターEメール通知を送信する必要があります。

どのように私は使用wp_mailのために新しいコメント投稿を呼び出すことができますか?助けてくれてありがとう!

2
Bohdan Hdal

Functions.phpでこのようなことを試すことができます。

function send_comment_email_notification( $comment_ID, $commentdata ) {
    $comment = get_comment( $comment_id );
    $postid = $comment->comment_post_ID;
    $master_email = get_post_meta( $postid, 'master_email', true);
    if( isset( $master_email ) && is_email( $master_email ) ) {
        $message = 'New comment on <a href="' . get_permalink( $postid ) . '">' .  get_the_title( $postid ) . '</a>';
        add_filter( 'wp_mail_content_type', create_function( '', 'return "text/html";' ) );
        wp_mail( $master_email, 'New Comment', $message );
    }
}
add_action( 'comment_post', 'send_comment_email_notification', 11, 2 );
6
Joshua Abenazer

これを試すことができます。例:[email protected]

add_filter('wp_mail_from','yoursite_wp_mail_from'); 

function yoursite_wp_mail_from($content_type) {
   return '[email protected]'; 
} 

add_filter('wp_mail_from_name','yoursite_wp_mail_from_name'); 

function yoursite_wp_mail_from_name($name) {
   return 'Helen Hou-Sandi'; 
} 
0
abercrombie