要想在第一時間知道有人在本身博客留言,而後在第一時間回覆留言再第一時間通知郵件者,這就須要WordPress博客擁有郵件通知功能。
先看效果:
評論郵件通知的方法:
1.全部回覆都發送郵件通知
登錄博客後臺,點擊「外觀」選項卡下的「編輯」選項進入主題編輯界面,在functions.php文件中的之間添加如下函數便可:php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
/* comment_mail_notify v1.0 by willin kan. (全部回覆都發郵件) */
function
comment_mail_notify(
$comment_id
) {
$comment
= get_comment(
$comment_id
);
$parent_id
=
$comment
->comment_parent ?
$comment
->comment_parent :
''
;
$spam_confirmed
=
$comment
->comment_approved;
if
((
$parent_id
!=
''
) && (
$spam_confirmed
!=
'spam'
)) {
$wp_email
=
'no-reply@'
. preg_replace(
'#^www\.#'
,
''
,
strtolower
(
$_SERVER
[
'SERVER_NAME'
]));
//e-mail 發出點, no-reply 可改成可用的 e-mail.
$to
= trim(get_comment(
$parent_id
)->comment_author_email);
$subject
=
'您在 ['
. get_option(
"blogname"
) .
'] 的留言有了回覆'
;
$message
= '
<div style=
" border:1px solid #d8e3e8; color:#111; padding:0 15px; -moz-border-radius:5px; -webkit-border-radius:5px; -khtml-border-radius:5px;"
>
<p>
' . trim(get_comment($parent_id)->comment_author) . '
, 您好!</p>
<p>您曾在《
' . get_the_title($comment->comment_post_ID) . '
》的留言:<br />'
. trim(get_comment(
$parent_id
)->comment_content) . '</p>
<p>
' . trim($comment->comment_author) . '
給您的回覆:<br />'
. trim(
$comment
->comment_content) . '<br /></p>
<p>您能夠點擊 查看回復完整內容</p>
<p>歡迎再度光臨
' . get_option('
blogname
') . '
</p>
<p>(此郵件由系統自動發送,請勿回覆.)</p>
</div>';
$from
=
"From: \""
. get_option(
'blogname'
) .
"\" <$wp_email>"
;
$headers
=
"$from\nContent-Type: text/html; charset="
. get_option(
'blog_charset'
) .
"\n"
;
wp_mail(
$to
,
$subject
,
$message
,
$headers
);
//echo 'mail to ', $to, '<br/> ' , $subject, $message; // for testing
}
}
add_action(
'comment_post'
,
'comment_mail_notify'
);
// -- END ----------------------------------------
|
2.讓訪客本身選擇是否郵件通知
在functions.php文件中的之間添加如下函數,該函數將會在評論框底部生成要不要收回復通知的選項html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
/* 開始*/
function
comment_mail_notify(
$comment_id
) {
$admin_notify
=
'1'
;
// admin 要不要收回復通知 ( '1'=要 ; '0'=不要 )
$admin_email
= get_bloginfo (
'admin_email'
);
// $admin_email 可改成你指定的 e-mail.
$comment
= get_comment(
$comment_id
);
$comment_author_email
= trim(
$comment
->comment_author_email);
$parent_id
=
$comment
->comment_parent ?
$comment
->comment_parent :
''
;
global
$wpdb
;
if
(
$wpdb
->query(
"Describe {$wpdb->comments} comment_mail_notify"
) ==
''
)
$wpdb
->query(
"ALTER TABLE {$wpdb->comments} ADD COLUMN comment_mail_notify TINYINT NOT NULL DEFAULT 0;"
);
if
((
$comment_author_email
!=
$admin_email
&& isset(
$_POST
[
'comment_mail_notify'
])) || (
$comment_author_email
==
$admin_email
&&
$admin_notify
==
'1'
))
$wpdb
->query(
"UPDATE {$wpdb->comments} SET comment_mail_notify='1' WHERE comment_ID='$comment_id'"
);
$notify
=
$parent_id
? get_comment(
$parent_id
)->comment_mail_notify :
'0'
;
$spam_confirmed
=
$comment
->comment_approved;
if
(
$parent_id
!=
''
&&
$spam_confirmed
!=
'spam'
&&
$notify
==
'1'
) {
$wp_email
=
'no-reply@'
. preg_replace(
'#^www\.#'
,
''
,
strtolower
(
$_SERVER
[
'SERVER_NAME'
]));
// e-mail 發出點, no-reply 可改成可用的 e-mail.
$to
= trim(get_comment(
$parent_id
)->comment_author_email);
$subject
=
'您在 ['
. get_option(
"blogname"
) .
'] 的留言有了回覆'
;
$message
= '
<div style=
" border:1px solid #d8e3e8; color:#111; padding:0 15px; -moz-border-radius:5px; -webkit-border-radius:5px; -khtml-border-radius:5px;"
>
<p>
' . trim(get_comment($parent_id)->comment_author) . '
, 您好!</p>
<p>您曾在《
' . get_the_title($comment->comment_post_ID) . '
》的留言:<br />'
. trim(get_comment(
$parent_id
)->comment_content) . '</p>
<p>
' . trim($comment->comment_author) . '
給您的回覆:<br />'
. trim(
$comment
->comment_content) . '<br /></p>
<p>您能夠點擊查看回復的完整內容</p>
<p>還要再度光臨
' . get_option('
blogname
') . '
</p>
<p>(此郵件由系統自動發送,請勿回覆.)</p>
</div>';
$from
=
"From: \""
. get_option(
'blogname'
) .
"\" <$wp_email>"
;
$headers
=
"$from\nContent-Type: text/html; charset="
. get_option(
'blog_charset'
) .
"\n"
;
wp_mail(
$to
,
$subject
,
$message
,
$headers
);
//echo 'mail to ', $to, '<br/> ' , $subject, $message; // for testing
}
}
add_action(
'comment_post'
,
'comment_mail_notify'
);
/* 自動加勾選欄 */
function
add_checkbox() {
echo
'<input type="checkbox" name="comment_mail_notify" id="comment_mail_notify" value="comment_mail_notify" checked="checked" style="margin-left:20px;" /><span for="comment_mail_notify">有人回覆時郵件通知我</span>'
;
}
add_action(
'comment_form'
,
'add_checkbox'
);
|
上面最後一句web
1
|
<span
for
=
"comment_mail_notify"
>有人回覆時郵件通知我</span>';
|
網上原來的代碼是app
1
|
<label
for
=
"comment_mail_notify"
>有人回覆時郵件通知我</label>';
|
只是由於label是塊元素,會自動換行,效果就是文字在複選框的下面,因此我爲了讓文字顯示在複選框的右邊,就使用了內聯元素span,這樣就不會自動換行了。
3.讓博客管理員決定什麼狀況下發郵件
在functions.php文件中的之間添加如下函數:函數
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
/* comment_mail_notify v1.0 by willin kan. (無勾選欄) */
function
comment_mail_notify(
$comment_id
) {
$admin_email
= get_bloginfo (
'admin_email'
);
// $admin_email 可改成你指定的 e-mail.
$comment
= get_comment(
$comment_id
);
$comment_author_email
= trim(
$comment
->comment_author_email);
$parent_id
=
$comment
->comment_parent ?
$comment
->comment_parent :
''
;
$to
=
$parent_id
? trim(get_comment(
$parent_id
)->comment_author_email) :
''
;
$spam_confirmed
=
$comment
->comment_approved;
if
((
$parent_id
!=
''
) && (
$spam_confirmed
!=
'spam'
) && (
$to
!=
$admin_email
) && (
$comment_author_email
==
$admin_email
)) {
/* 上面的判斷式,決定發出郵件的必要條件:
($parent_id != '') && ($spam_confirmed != 'spam'): 回覆的, 並且不是 spam 纔可發, 必需!!
($to != $admin_email) : 不發給 admin.
($comment_author_email == $admin_email) : 只有 admin 的回覆纔可發.
可視我的需修改上面的條件.
*/
$wp_email
=
'no-reply@'
. preg_replace(
'#^www\.#'
,
''
,
strtolower
(
$_SERVER
[
'SERVER_NAME'
]));
// e-mail 發出點, no-reply 可改成可用的 e-mail.
$subject
=
'您在 ['
. get_option(
"blogname"
) .
'] 的留言有了回覆'
;
$message
= '
<div style=
" border:1px solid #d8e3e8; color:#111; padding:0 15px; -moz-border-radius:5px; -webkit-border-radius:5px; -khtml-border-radius:5px;"
>
<p>
' . trim(get_comment($parent_id)->comment_author) . '
, 您好!</p>
<p>您曾在《
' . get_the_title($comment->comment_post_ID) . '
》的留言:<br />'
. trim(get_comment(
$parent_id
)->comment_content) . '</p>
<p>
' . trim($comment->comment_author) . '
給您的回覆:<br />'
. trim(
$comment
->comment_content) . '<br /></p>
<p>您能夠點擊 查看回復的完整內容</p>
<p>還要再度光臨
' . get_option('
blogname
') . '
</p>
<p>(此郵件由系統自動發送,請勿回覆.)</p>
</div>';
$from
=
"From: \""
. get_option(
'blogname'
) .
"\" <$wp_email>"
;
$headers
=
"$from\nContent-Type: text/html; charset="
. get_option(
'blog_charset'
) .
"\n"
;
wp_mail(
$to
,
$subject
,
$message
,
$headers
);
//echo 'mail to ', $to, '<br/> ' , $subject, $message; // for testing
}
}
add_action(
'comment_post'
,
'comment_mail_notify'
);
// -- END ----------------------------------------
|
根據你的須要隨意選擇一種,我使用的是第二種。post