Created
October 30, 2017 16:47
-
-
Save Tomasz-Silpion/7ab098970bafd4e297e496ee5c1a1e83 to your computer and use it in GitHub Desktop.
Get Magento queue recipients who received outdated email
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT DISTINCT `recipient_email` FROM `core_email_queue` INNER JOIN `core_email_queue_recipients` ON `core_email_queue`.`message_id` = `core_email_queue_recipients`.`message_id` WHERE `processed_at` > '2017-10-30 00:00:00' AND `created_at` < '2017-10-25 00:00:00' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment