我在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);
}
}
}