久久99国产精品片久久99蜜桃_久久精品99国产精品蜜桃_久久久亚洲AV成人网站_欧美精品色婷婷五月综合_亚洲精品乱码久久久久久蜜桃图片_夜夜高潮夜夜爽国产伦精品_69无人区乱码一二三四区别_日产一码二码三码区别_大香区一二三四区2021_国产精品爱久久久久久久,日本高清视频成人网www,国产亚洲一二三区精品免费视频观看,久久久精品国产SM调教网站

推廣 熱搜: 后臺  帝國cms  位置  網(wǎng)站  Wordpress教程  帝國cms建站  內(nèi)容  DESTOON  郵箱  destoon7.0 

WordPress實現(xiàn)回復(fù)文章評論后發(fā)送郵件通知的功能

   日期:2019-06-12     瀏覽:158    違規(guī)舉報
 
騰訊云服務(wù)器優(yōu)惠

很多時候,,人們都希望在自己的評論被管理員回復(fù)后會收到通知,。該函數(shù)的作用就是回復(fù)后自動郵件通知評論者。

把下面的代碼加到wordpress的主題函數(shù)里面,,然后修改下郵件帳號密碼,。

該函數(shù)是針對SAE平臺的wordpress,非SAE平臺不能使用,,有需要的話留言我也會寫出相應(yīng)方法,。

  //郵件回復(fù)  function comment_mail_notify($comment_id) {  define('MAIL_SMTP', 'smtp.exmail.qq.com'); //smtp服務(wù)器  define('MAIL_PORT', 25); //smtp端口  define('MAIL_SENDEMAIL', '123456789@qq.com'); //發(fā)送郵件帳號  define('MAIL_PASSWORD', '123456'); //發(fā)送郵件密碼  $admin_notify = '1';  $admin_email = get_bloginfo ('admin_email');  $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 ? '1' : '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']));  $to = trim(get_comment($parent_id)->comment_author_email);  $subject = '你在' . get_option("blogname") . '回復(fù)被關(guān)注啦~';  $message = '  <div style="width: 502px; height: auto; margin-bottom: 50px; margin-left: auto; margin-right: auto; font-size: 13px; line-height: 14px;">  <div style="width: 502px; margin-top: 10px;">  <div style="font-size: 16px; color: #373737; text-align: center;">'.get_bloginfo("name").'</div>  <div style="font-size: 15px; color: #f0f7eb; padding: 9px; margin-top: 20px; overflow: hidden; background: #299982; padding-left: 30px; padding-right: 40px;">你在 '. get_the_title($comment-&gt;comment_post_ID) .' 的評論有了回復(fù):</div>  </div>  <div style="width: 420px; margin-top: 30px; padding: 0 40px 20px; border-left: 1px dashed #299982; border-right: 1px dashed #299982; color: rgba(0,0,0,0.7); background: #f9f9f9; overflow: hidden;">  <div class="one origin" style="border: 1px solid #EEE; overflow: auto; padding: 10px; margin: 1em 0;"><span style="color: #299982;">'. trim(get_comment($parent_id)-&gt;comment_author) .'</span>:'. trim(get_comment($parent_id)-&gt;comment_content) .'</div>  <div class="one reply" style="border: 1px solid #EEE; overflow: auto; padding: 10px; margin: 1em 0 1em 60px;"><span style="color: #299982;">'. trim($comment-&gt;comment_author) .'</span>:'. trim($comment-&gt;comment_content) .'</div>  <p style="margin-bottom: 10px;">點擊<a href="' . htmlspecialchars(get_comment_link($parent_id)) . ' style=">查看完整內(nèi)容</a></p>  <p style="margin-bottom: 10px;">(此郵件由系統(tǒng)發(fā)出,無需回復(fù).)</p>  </div>  </div>  ';  $from = "From: \"" . get_option('blogname') . "\" <$wp_email>";  $headers = "$from\nContent-Type: text/html; charset=" . get_option('blog_charset') . "\n";  $mail = new SaeMail(); //對象  $mail->setOpt(array( 'from' => 'admin@xtwind.com', 'to' => trim($to),//接收信箱  'smtp_host' => MAIL_SMTP , //host  'smtp_port' => MAIL_PORT, //port  'smtp_username' => MAIL_SENDEMAIL,  'smtp_password' => MAIL_PASSWORD,  'subject' => $subject,  'content' => $message,  'content_type' => 'HTML'  // 'tls' => true,  //'charset' => 'gbk' ) );  $ret = $mail->send();  }  }  add_action('comment_post', 'comment_mail_notify');

免責(zé)聲明:
1、本站所收集的部分公開資料來源于互聯(lián)網(wǎng),,轉(zhuǎn)載的目的在于傳遞更多信息及用于網(wǎng)絡(luò)分享,,并不代表本站贊同其觀點和對其真實性負(fù)責(zé),也不構(gòu)成任何其他建議,。
2,、本站部分作品內(nèi)容是由網(wǎng)友自主投稿和發(fā)布、編輯整理上傳,,對此類內(nèi)容本站僅提供交流平臺,,不為其版權(quán)負(fù)責(zé),更不為其觀點承擔(dān)任何責(zé)任,。
3,、因行業(yè)及專業(yè)性有限,故未能核驗會員發(fā)布內(nèi)容的真實性及有效性,,不為其負(fù)責(zé),,如有虛假或違規(guī)內(nèi)容敬請準(zhǔn)備材料圖片發(fā)郵件到info@n#舉報,本站核實后積極配合刪除,。
4,、如果您發(fā)現(xiàn)網(wǎng)站上有侵犯您的知識產(chǎn)權(quán)的作品,請與我們?nèi)〉寐?lián)系,,我們會及時處理或刪除,。
 
打賞
 
更多>同類網(wǎng)站技術(shù)
0相關(guān)評論

推薦圖文
推薦網(wǎng)站技術(shù)
點擊排行
網(wǎng)站首頁  |  關(guān)于我們  |  聯(lián)系方式  |  使用協(xié)議  |  免責(zé)聲明  |  版權(quán)隱私  |  信息發(fā)布規(guī)則  |  網(wǎng)站地圖  |  排名推廣  |  廣告服務(wù)  |  積分換禮  |  網(wǎng)站留言  |  RSS訂閱  |  違規(guī)舉報  |  粵ICP備2020081222號
Powered By DESTOON