{"id":2518,"date":"2025-06-11T03:29:47","date_gmt":"2025-06-10T19:29:47","guid":{"rendered":"https:\/\/www.zhaozhao123.cn\/wpcms\/wpdt\/2518.html"},"modified":"2025-06-11T03:29:47","modified_gmt":"2025-06-10T19:29:47","slug":"%e5%a6%82%e4%bd%95%e4%bd%bf%e7%94%a8%e5%85%8d%e8%b4%b9smtp%e6%9c%8d%e5%8a%a1%e5%99%a8%e5%8f%91%e9%80%81wordpress%e9%82%ae%e4%bb%b6%ef%bc%883%e7%a7%8d%e6%96%b9%e6%b3%95%ef%bc%89","status":"publish","type":"post","link":"https:\/\/www.zhaozhao123.cn\/wpcms\/post\/2518.html","title":{"rendered":"\u5982\u4f55\u4f7f\u7528\u514d\u8d39SMTP\u670d\u52a1\u5668\u53d1\u9001WordPress\u90ae\u4ef6\uff083\u79cd\u65b9\u6cd5\uff09"},"content":{"rendered":"<div class=\"wp-block-columns p-0 border is-layout-flex wp-container-core-columns-is-layout-28f84493 wp-block-columns-is-layout-flex\">\r\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\r\n<div class=\"wp-block-columns px-4 py-3 border-bottom has-background is-layout-flex wp-container-core-columns-is-layout-28f84493 wp-block-columns-is-layout-flex\" style=\"background:linear-gradient(243deg,rgb(238,238,238) 0%,rgba(58,166,242,0.15) 100%)\">\r\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\r\n<div class=\"wp-block-group is-nowrap is-layout-flex wp-container-core-group-is-layout-6c531013 wp-block-group-is-layout-flex\">\r\n<figure class=\"wp-block-image size-thumbnail is-resized is-style-rounded is-style-rounded--1\"><img decoding=\"async\" src=\"https:\/\/www.zhaozhao123.cn\/myitems\/images\/sites16\/2025\/06\/dyA-1-400x300.jpg\" alt=\"Bug&#32534;&#35793;&#29422;\" class=\"wp-image-1842\" style=\"object-fit:cover;width:30px;height:30px\"><\/figure>\r\n\r\n\r\n\r\n<p class=\"my-0\">Bug&#32534;&#35793;&#29422;<\/p>\r\n<\/div>\r\n<\/div>\r\n<\/div>\r\n\r\n\r\n\r\n<div class=\"wp-block-columns px-xl-5 px-4 py-xl-4 py-3 is-layout-flex wp-container-core-columns-is-layout-28f84493 wp-block-columns-is-layout-flex\">\r\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\r\n<h3>&#22914;&#20309;&#20351;&#29992;&#20813;&#36153;SMTP&#26381;&#21153;&#22120;&#21457;&#36865;WordPress&#37038;&#20214;<\/h3>\n<h4>&#26041;&#27861;&#19968;&#65306;&#20351;&#29992;PHP&#30340;mail()&#20989;&#25968;<\/h4>\n<p>&#39318;&#20808;&#65292;&#20320;&#38656;&#35201;&#30830;&#20445;&#20320;&#30340;&#32593;&#31449;&#19978;&#24050;&#32463;&#21551;&#29992;&#20102;SMTP&#21151;&#33021;&#65292;&#24182;&#19988;&#35774;&#32622;&#20102;&#19968;&#20010;&#26377;&#25928;&#30340;SMTP&#26381;&#21153;&#22120;&#22320;&#22336;&#21644;&#31471;&#21475;&#21495;&#12290;<\/p>\n<ol>\n<li>\n<p><strong>&#26816;&#26597;SMTP&#35774;&#32622;<\/strong>&#65306;<\/p>\n<ul>\n<li>&#25171;&#24320;<code>wp-config.php<\/code>&#25991;&#20214;&#65292;&#25214;&#21040;&#20197;&#19979;&#34892;&#24182;&#20462;&#25913;&#20026;&#27491;&#30830;&#30340;SMTP&#37197;&#32622;&#65306;\n<pre><code class=\"language-php\">define('SMTP_HOST', 'smtp.example.com');\ndefine('SMTP_PORT', 587);\ndefine('SMTP_USERNAME', '');\ndefine('SMTP_PASSWORD', '');<\/code><\/pre><\/li>\n<\/ul>\n<\/li>\n<li>\n<p><strong>&#28155;&#21152;PHPMailer&#24211;<\/strong>&#65306;\n&#22914;&#26524;&#20320;&#36824;&#27809;&#26377;&#23433;&#35013;PHPMailer&#65292;&#35831;&#36890;&#36807;&#20197;&#19979;&#21629;&#20196;&#23433;&#35013;&#65306;<\/p>\n<pre><code>composer require phpmailer\/phpmailer<\/code><\/pre>\n<\/li>\n<li>\n<p><strong>&#21019;&#24314;&#37038;&#20214;&#31867;<\/strong>&#65306;\n&#22312;&#20320;&#30340;&#20027;&#39064;&#25991;&#20214;&#25110;&#20219;&#20309;&#38656;&#35201;&#21457;&#36865;&#37038;&#20214;&#30340;&#22320;&#26041;&#21019;&#24314;&#19968;&#20010;&#26032;&#30340;&#31867;&#26469;&#22788;&#29702;&#37038;&#20214;&#21457;&#36865;&#12290;<\/p>\n<pre><code class=\"language-php\">class Mailer {\n   public function sendEmail($to, $subject, $body) {\n       \/\/ &#21019;&#24314;&#19968;&#20010;&#26032;&#30340;PHPMailer&#23454;&#20363;\n       $mail = new PHPMailer();\n\n       \/\/ &#35774;&#32622;SMTP&#23646;&#24615;\n       $mail-&gt;isSMTP();\n       $mail-&gt;Host = SMTP_HOST;\n       $mail-&gt;Port = SMTP_PORT;\n       $mail-&gt;SMTPAuth = true;\n       $mail-&gt;Username = SMTP_USERNAME;\n       $mail-&gt;Password = SMTP_PASSWORD;\n       $mail-&gt;setFrom(SMTP_USERNAME, \"Your Name\");\n\n       \/\/ &#28155;&#21152;&#25910;&#20214;&#20154;\n       $mail-&gt;addAddress($to);\n\n       \/\/ &#37038;&#20214;&#26631;&#39064;\n       $mail-&gt;Subject = $subject;\n\n       \/\/ &#21457;&#36865;&#37038;&#20214;&#27491;&#25991;\n       $mail-&gt;Body    = $body;\n       $mail-&gt;AltBody = strip_tags($body);\n\n       \/\/ &#39564;&#35777;&#37038;&#20214;&#26159;&#21542;&#25104;&#21151;&#21457;&#36865;\n       if(!$mail-&gt;send()) {\n           return false;\n       } else {\n           return true;\n       }\n   }\n}<\/code><\/pre>\n<\/li>\n<li>\n<p><strong>&#35843;&#29992;&#21457;&#36865;&#20989;&#25968;<\/strong>&#65306;\n&#20351;&#29992;&#20320;&#21019;&#24314;&#30340;Mailer&#31867;&#21457;&#36865;&#37038;&#20214;&#12290;<\/p>\n<pre><code class=\"language-php\">$mailer = new Mailer();\n$result = $mailer-&gt;sendEmail(\"recipient@example.com\", \"Test Email\", \"This is a test email.\");\n\nif ($result) {\n   echo \"Email sent successfully!\";\n} else {\n   echo \"Failed to send email.\";\n}<\/code><\/pre>\n<\/li>\n<\/ol>\n<h4>&#26041;&#27861;&#20108;&#65306;&#20351;&#29992;PHPMailer&#24211;&#21457;&#36865;HTML&#26684;&#24335;&#30340;&#37038;&#20214;<\/h4>\n<p>&#22914;&#26524;&#20320;&#38656;&#35201;&#21457;&#36865;&#24102;&#26377;HTML&#26684;&#24335;&#30340;&#37038;&#20214;&#65292;&#21487;&#20197;&#31245;&#24494;&#35843;&#25972;&#19978;&#38754;&#30340;&#20195;&#30721;&#20197;&#36866;&#24212;&#38656;&#27714;&#12290;<\/p>\n<h4>&#26041;&#27861;&#19977;&#65306;&#20351;&#29992;&#31532;&#19977;&#26041;&#26381;&#21153;&#22914;SendGrid<\/h4>\n<p>&#23545;&#20110;&#26356;&#39640;&#32423;&#30340;&#38656;&#27714;&#65292;&#20320;&#21487;&#20197;&#32771;&#34385;&#20351;&#29992;&#20687;SendGrid&#36825;&#26679;&#30340;&#31532;&#19977;&#26041;&#26381;&#21153;&#26469;&#31616;&#21270;&#37038;&#20214;&#21457;&#36865;&#36807;&#31243;&#12290;SendGrid&#25552;&#20379;&#20102;&#19968;&#22871;API&#26469;&#25511;&#21046;&#37038;&#20214;&#21457;&#36865;&#65292;&#21253;&#25324;SMTP&#35748;&#35777;&#31561;&#12290;<\/p>\n<ol>\n<li>\n<p><strong>&#27880;&#20876;&#24182;&#33719;&#21462;API&#23494;&#38053;<\/strong>&#65306;\n&#30331;&#24405;SendGrid&#23448;&#32593;&#65292;&#27880;&#20876;&#36134;&#21495;&#24182;&#19979;&#36733;API&#23494;&#38053;&#12290;<\/p>\n<\/li>\n<li>\n<p><strong>&#22312;WordPress&#20013;&#38598;&#25104;SendGrid<\/strong>&#65306;\n&#25353;&#29031;SendGrid&#25552;&#20379;&#30340;&#25991;&#26723;&#36880;&#27493;&#38598;&#25104;SendGrid&#21040;&#20320;&#30340;WordPress&#39033;&#30446;&#20013;&#12290;<\/p>\n<\/li>\n<li>\n<p><strong>&#21457;&#36865;&#37038;&#20214;<\/strong>&#65306;\n&#20351;&#29992;SendGrid API&#21457;&#36865;&#37038;&#20214;&#65292;&#26080;&#38656;&#25163;&#21160;&#37197;&#32622;SMTP&#26381;&#21153;&#22120;&#12290;<\/p>\n<\/li>\n<\/ol>\n<p>&#36825;&#20123;&#26041;&#27861;&#21487;&#20197;&#24110;&#21161;&#20320;&#22312;WordPress&#29615;&#22659;&#20013;&#26377;&#25928;&#22320;&#20351;&#29992;SMTP&#26381;&#21153;&#22120;&#21457;&#36865;&#37038;&#20214;&#12290;&#36873;&#25321;&#36866;&#21512;&#20320;&#30340;&#20855;&#20307;&#38656;&#27714;&#30340;&#26041;&#27861;&#21363;&#21487;&#12290;<\/p>\r\n<\/div>\r\n<\/div>\r\n<\/div>\r\n<\/div><div class=\"wp-block-columns p-0 border is-layout-flex wp-container-core-columns-is-layout-28f84493 wp-block-columns-is-layout-flex\">\r\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\r\n<div class=\"wp-block-columns px-4 py-3 border-bottom has-background is-layout-flex wp-container-core-columns-is-layout-28f84493 wp-block-columns-is-layout-flex\" style=\"background:linear-gradient(243deg,rgb(238,238,238) 0%,rgba(58,166,242,0.15) 100%)\">\r\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\r\n<div class=\"wp-block-group is-nowrap is-layout-flex wp-container-core-group-is-layout-6c531013 wp-block-group-is-layout-flex\">\r\n<figure class=\"wp-block-image size-thumbnail is-resized is-style-rounded is-style-rounded--2\"><img decoding=\"async\" src=\"https:\/\/www.zhaozhao123.cn\/myitems\/images\/sites16\/2025\/06\/zp-400x300.jpg\" alt=\"&#40657;&#26495;&#21069;&#30340;Bug&#35821;&#27861;&#35762;&#24072;\" class=\"wp-image-1849\" style=\"object-fit:cover;width:30px;height:30px\"><\/figure>\r\n\r\n\r\n\r\n<p class=\"my-0\">&#40657;&#26495;&#21069;&#30340;Bug&#35821;&#27861;&#35762;&#24072;<\/p>\r\n<\/div>\r\n<\/div>\r\n<\/div>\r\n\r\n\r\n\r\n<div class=\"wp-block-columns px-xl-5 px-4 py-xl-4 py-3 is-layout-flex wp-container-core-columns-is-layout-28f84493 wp-block-columns-is-layout-flex\">\r\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\r\n<h3>&#35838;&#31243;&#30446;&#26631;<\/h3>\n<p>&#26412;&#35838;&#31243;&#23558;&#20171;&#32461;&#19977;&#31181;&#19981;&#21516;&#30340;&#26041;&#24335;&#26469;&#20351;&#29992;&#20813;&#36153; SMTP &#26381;&#21153;&#22120;&#21521; WordPress &#37038;&#20214;&#21015;&#34920;&#21457;&#36865;&#30005;&#23376;&#37038;&#20214;&#12290;&#36825;&#20123;&#26041;&#27861;&#36866;&#29992;&#20110;&#37027;&#20123;&#24076;&#26395;&#21033;&#29992;&#33258;&#24049;&#30340; SMTP &#26381;&#21153;&#32780;&#38750;&#20184;&#36153; SMTP &#26381;&#21153;&#30340;&#20154;&#12290;<\/p>\n<h3>&#30446;&#24405;<\/h3>\n<ol>\n<li><strong>&#20351;&#29992; PHP &#21457;&#36865;&#37038;&#20214;<\/strong><\/li>\n<li><strong>&#20351;&#29992; Python &#21457;&#36865;&#37038;&#20214;<\/strong><\/li>\n<li><strong>&#20351;&#29992; Perl &#21457;&#36865;&#37038;&#20214;<\/strong><\/li>\n<\/ol>\n<h3>&#26041;&#27861;&#19968;&#65306;&#20351;&#29992; PHP &#21457;&#36865;&#37038;&#20214;<\/h3>\n<h4>&#27493;&#39588; 1: &#23433;&#35013; PHPMailer &#24211;<\/h4>\n<p>&#39318;&#20808;&#65292;&#20320;&#38656;&#35201;&#23433;&#35013;&#21644;&#37197;&#32622; PHPMailer &#24211;&#12290;PHPMailer &#26159;&#19968;&#20010;&#38750;&#24120;&#24378;&#22823;&#30340;&#37038;&#20214;&#21457;&#36865;&#24211;&#65292;&#21487;&#20197;&#22788;&#29702;&#21508;&#31181;&#22797;&#26434;&#30340;&#37038;&#20214;&#26684;&#24335;&#21644;&#36873;&#39033;&#12290;<\/p>\n<pre><code class=\"language-bash\">sudo apt-get update\nsudo apt-get install php5-mysql php5-curl php5-gd php5-xml php5-zip php5-pear libzip-dev libxml2-dev php5-xmlrpc php5-tidy<\/code><\/pre>\n<h4>&#27493;&#39588; 2: &#21019;&#24314; PHPMailer &#23454;&#20363;<\/h4>\n<p>&#21019;&#24314;&#19968;&#20010;&#26032;&#30340; PHP &#25991;&#20214;&#65292;&#20363;&#22914; <code>mail.php<\/code>&#65292;&#24182;&#28155;&#21152;&#20197;&#19979;&#20195;&#30721;&#65306;<\/p>\n<pre><code class=\"language-php\">&lt;?php\nrequire 'vendor\/autoload.php'; \/\/ &#21152;&#36733; PHPMailer &#24211;\nuse PHPMailerPHPMailerPHPMailer;\nuse PHPMailerPHPMailerException;\n\n\/\/ &#21021;&#22987;&#21270; PHPMailer\n$mail = new PHPMailer(true);\n\ntry {\n    \/\/ &#35774;&#32622; SMTP &#26381;&#21153;&#22120;&#20449;&#24687;\n    $mail-&gt;isSMTP();\n    $mail-&gt;Host       = 'your-smtp-server.com';\n    $mail-&gt;SMTPAuth   = true; \/\/ &#24320;&#21551; SMTP &#35748;&#35777;\n    $mail-&gt;Username   = 'your-email@example.com';\n    $mail-&gt;Password   = 'your-password';\n    $mail-&gt;Port       = 587; \/\/ &#20351;&#29992;&#31471;&#21475; 587\n    $mail-&gt;setFrom('your-email@example.com', 'Your Name'); \/\/ &#25351;&#23450;&#21457;&#20214;&#20154;&#37038;&#31665;&#21644;&#21517;&#31216;\n\n    \/\/ &#35774;&#32622;&#25910;&#20214;&#20154;&#20449;&#24687;\n    $mail-&gt;addAddress('recipient@example.com');\n\n    \/\/ &#28155;&#21152;&#37038;&#20214;&#27491;&#25991;\n    $mail-&gt;isHTML(true);\n    $mail-&gt;Subject = 'Hello, World!';\n    $mail-&gt;Body    = '&lt;strong&gt;Hello, World!&lt;\/strong&gt;';\n} catch (Exception $e) {\n    echo \"Error: \" . $e-&gt;getMessage();\n}\n\nif ($mail-&gt;send()) {\n    echo \"Message has been sent\";\n} else {\n    echo \"Message could not be sent. Mailer Error: \" . $mail-&gt;ErrorInfo;\n}\n?&gt;<\/code><\/pre>\n<p>&#22312;&#36825;&#20010;&#20363;&#23376;&#20013;&#65292;&#25105;&#20204;&#20351;&#29992;&#20102; Gmail SMTP &#26381;&#21153;&#22120;&#20316;&#20026; SMTP &#26381;&#21153;&#22120;&#65292;&#20294;&#20320;&#21487;&#20197;&#26681;&#25454;&#38656;&#35201;&#36873;&#25321;&#20854;&#20182; SMTP &#26381;&#21153;&#22120;&#12290;&#30830;&#20445;&#26367;&#25442;&#19978;&#36848;&#23383;&#27573;&#20026;&#23454;&#38469;&#30340; SMTP &#26381;&#21153;&#22120;&#12289;&#29992;&#25143;&#21517;&#12289;&#23494;&#30721;&#20197;&#21450;&#25910;&#20214;&#20154;&#30340;&#30005;&#23376;&#37038;&#20214;&#22320;&#22336;&#12290;<\/p>\n<h3>&#26041;&#27861;&#20108;&#65306;&#20351;&#29992; Python &#21457;&#36865;&#37038;&#20214;<\/h3>\n<h4>&#27493;&#39588; 1: &#23433;&#35013;&#25152;&#38656;&#24211;<\/h4>\n<p>&#39318;&#20808;&#65292;&#30830;&#20445;&#24050;&#23433;&#35013; Python &#21644; Django&#12290;&#28982;&#21518;&#65292;&#23433;&#35013; Django &#30340; Email App&#65292;&#23427;&#25552;&#20379;&#20102;&#19968;&#20010;&#31616;&#21333;&#30340; API &#26469;&#21457;&#36865;&#30005;&#23376;&#37038;&#20214;&#12290;<\/p>\n<pre><code class=\"language-bash\">pip install django\npip install django-mail<\/code><\/pre>\n<h4>&#27493;&#39588; 2: &#22312; Django &#39033;&#30446;&#20013;&#35774;&#32622;<\/h4>\n<p>&#22312; <code>settings.py<\/code> &#25991;&#20214;&#20013;&#21551;&#29992; <code>EMAIL_BACKEND<\/code> &#24182;&#25351;&#23450; SMTP &#26381;&#21153;&#22120;&#65306;<\/p>\n<pre><code class=\"language-python\">import os\nfrom dj_database_url import parse as dburl\n\n# Database\nDATABASES['default']['ENGINE'] = os.getenv(\"DB_ENGINE\", \"django.db.backends.postgresql\")\nDATABASES['default']['NAME'] = os.getenv(\"DB_NAME\", \"mydatabase\")\nDATABASES['default']['USER'] = os.getenv(\"DB_USER\", \"myuser\")\nDATABASES['default']['PASSWORD'] = os.getenv(\"DB_PASSWORD\", \"mypassword\")\nDATABASES['default']['HOST'] = os.getenv(\"DB_HOST\", \"db\")\nDATABASES['default']['PORT'] = os.getenv(\"DB_PORT\", \"5432\")\n\n# Django settings\nDEBUG = True\nALLOWED_HOSTS = ['*']\nEMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend'\nEMAIL_HOST = 'smtp.gmail.com'  # &#25913;&#20026;&#20320;&#30340;Gmail SMTP&#26381;&#21153;&#22120;\nEMAIL_PORT = 587\nEMAIL_USE_TLS = True\nEMAIL_HOST_USER = 'your-email@example.com'\nEMAIL_HOST_PASSWORD = 'your-password'\nEMAIL_FROM_ADDRESS = 'your-email@example.com'\nEMAIL_FROM_NAME = 'Your Name'<\/code><\/pre>\n<h3>&#26041;&#27861;&#19977;&#65306;&#20351;&#29992; Perl &#21457;&#36865;&#37038;&#20214;<\/h3>\n<h4>&#27493;&#39588; 1: &#23433;&#35013; Perl &#32534;&#35793;&#22120;&#21644; Perl &#21629;&#20196;&#34892;&#24037;&#20855;<\/h4>\n<p>&#30830;&#20445;&#26377; Perl &#32534;&#35793;&#22120;&#21644;&#21629;&#20196;&#34892;&#24037;&#20855;&#65288;&#22914; perl&#65289;&#12290;&#22914;&#26524;&#26410;&#23433;&#35013;&#65292;&#35831;&#20174; Perl &#23448;&#26041;&#32593;&#31449;&#19979;&#36733;&#24182;&#23433;&#35013;&#12290;<\/p>\n<h4>&#27493;&#39588; 2: &#32534;&#20889;&#21457;&#36865;&#37038;&#20214;&#33050;&#26412;<\/h4>\n<p>&#32534;&#20889;&#19968;&#20010;Perl&#33050;&#26412;&#65292;&#20351;&#29992; <code>Mail::Sender<\/code> &#36825;&#20010;&#27169;&#22359;&#21457;&#36865;&#37038;&#20214;&#12290;&#27880;&#24847;&#65292;Perl &#19981;&#25903;&#25345; HTML &#26684;&#24335;&#30340;&#37038;&#20214;&#65292;&#22240;&#27492;&#25105;&#20204;&#38656;&#35201;&#25163;&#21160;&#21019;&#24314;&#25991;&#26412;&#29256;&#30340; HTML&#12290;<\/p>\n<pre><code class=\"language-perl\">#!\/usr\/bin\/perl\nuse strict;\nuse warnings;\nuse Mail::Sender::Transport::SMTP;\nuse Mail::Sender::Transport::SMTP::TLS;\n\nmy $transport = Mail::Sender::Transport::SMTP-&gt;new(\n    host     =&gt; 'smtp.example.com',\n    port     =&gt; 587,\n    username =&gt; 'your-email@example.com',\n    password =&gt; 'your-password',\n    tls      =&gt; 1,\n    starttls =&gt; 1,\n);\n\nmy $message = &lt;&lt;'END_MESSAGE';\n&lt;html&gt;\n&lt;body&gt;\n&lt;h1&gt;Hi there!&lt;\/h1&gt;\n&lt;p&gt;This is a test email.&lt;\/p&gt;\n&lt;\/body&gt;\n&lt;\/html&gt;\nEND_MESSAGE\n\n$transport-&gt;send($message);\n\nprint \"Email sent successfully.n\";<\/code><\/pre>\n<h3>&#32467;&#35770;<\/h3>\n<p>&#36890;&#36807;&#20197;&#19978;&#19977;&#31181;&#26041;&#27861;&#20013;&#30340;&#20219;&#20309;&#19968;&#31181;&#65292;&#37117;&#21487;&#20197;&#36731;&#26494;&#22320;&#20351;&#29992;&#20813;&#36153; SMTP &#26381;&#21153;&#22120;&#21521; WordPress &#37038;&#31665;&#21015;&#34920;&#21457;&#36865;&#30005;&#23376;&#37038;&#20214;&#12290;&#27599;&#31181;&#26041;&#27861;&#37117;&#26377;&#20854;&#29305;&#23450;&#30340;&#20248;&#21183;&#21644;&#36866;&#29992;&#22330;&#26223;&#65292;&#21487;&#20197;&#26681;&#25454;&#20855;&#20307;&#38656;&#27714;&#36873;&#25321;&#26368;&#21512;&#36866;&#30340;&#26041;&#27861;&#12290;<\/p>\r\n<\/div>\r\n<\/div>\r\n<\/div>\r\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>Bug&#32534;&#35793;&#29422; &#22914;&#20309;&#20351;&#29992;&#20813;&#36153;SMTP&#26381;&#21153;&#22120;&#21457;&#36865;WordPress&#37038;&#20214; &#26041;&#038;#2786..<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"","ping_status":"","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[1],"tags":[59],"tuisongtax":[],"class_list":["post-2518","post","type-post","status-publish","format-standard","hentry","category-wpdt","tag-pzjc"],"acf":[],"_links":{"self":[{"href":"https:\/\/www.zhaozhao123.cn\/wpcms\/wp-json\/wp\/v2\/posts\/2518","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.zhaozhao123.cn\/wpcms\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.zhaozhao123.cn\/wpcms\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.zhaozhao123.cn\/wpcms\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.zhaozhao123.cn\/wpcms\/wp-json\/wp\/v2\/comments?post=2518"}],"version-history":[{"count":0,"href":"https:\/\/www.zhaozhao123.cn\/wpcms\/wp-json\/wp\/v2\/posts\/2518\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.zhaozhao123.cn\/wpcms\/wp-json\/wp\/v2\/media?parent=2518"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.zhaozhao123.cn\/wpcms\/wp-json\/wp\/v2\/categories?post=2518"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.zhaozhao123.cn\/wpcms\/wp-json\/wp\/v2\/tags?post=2518"},{"taxonomy":"tuisongtax","embeddable":true,"href":"https:\/\/www.zhaozhao123.cn\/wpcms\/wp-json\/wp\/v2\/tuisongtax?post=2518"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}