假设给本地站点起了一个没有顶级域的名称。如blog。这时WordPress会认为“发件人”地址为wordpress@blog”。所以要指定发件人:

add_filter( 'wp_mail_from', function() {
  return '***@*****.***';
} );