用户数超过300的电子邮件不发送

时间:2019-01-19 09:24:18

标签: php wordpress

我在WordPress中创建了功能齐全的PHP。 发布文章时,我会将其发送给我们的订阅者。 我在DB中还有1000个电子邮件订阅者,但是当我执行该功能时,它仅发送300封电子邮件。

add_action( 'publish_post', 'wp_post_published_notification', 10, 2 );

function wp_post_published_notification( $ID, $post ) {
    $img=get_the_post_thumbnail( $ID, 'full' );
    $link=get_permalink($ID);
    $title=$post->post_title; 

    if($title && $img)
    {
      global $wpdb;
      $list_email = $wpdb->get_results("SELECT * FROM `wp_es_emaillist` ");

      $content="............";
      $subject="............";
      $headers="............";

      foreach ( $list_email as $email )
      {
           wp_mail($email,$subject,$content,$headers);
      }
    }
} 

0 个答案:

没有答案