diff --git a/mailpoet/lib/Cron/Workers/SendingQueue/SendingQueue.php b/mailpoet/lib/Cron/Workers/SendingQueue/SendingQueue.php index 6520b86ff6..aef81e46ba 100644 --- a/mailpoet/lib/Cron/Workers/SendingQueue/SendingQueue.php +++ b/mailpoet/lib/Cron/Workers/SendingQueue/SendingQueue.php @@ -274,6 +274,8 @@ class SendingQueue { if (!$isTransactional) { $now = Carbon::createFromTimestamp((int)current_time('timestamp')); $this->subscribersRepository->bulkUpdateLastSendingAt($foundSubscribersIds, $now); + // We're nullifying this value so these subscribers' engagement score will be recalculated the next time the cron runs + $this->subscribersRepository->bulkUpdateEngagementScoreUpdatedAt($foundSubscribersIds, null); } $this->loggerFactory->getLogger(LoggerFactory::TOPIC_NEWSLETTERS)->info( 'after queue chunk processing',