Created
December 14, 2012 20:49
-
-
Save kylekeesling/4288530 to your computer and use it in GitHub Desktop.
Query that uses ExactTarget Data Views to find all subcribers who've been sent to today. Also includes an optional qualifier to ignore emails that you may use on a seed list
This file contains 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 | |
SubscriberKey | |
FROM _Sent | |
WHERE | |
DATEDIFF(day, EventDate, GETDATE()) = 0 | |
AND SubscriberKey NOT IN ('[email protected]','[email protected]''[email protected]') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment