A customer wants a list of subscribers who were sent an email within the past 12 months.
How shouldthis request be completed?
To get a list of subscribers who were sent an email within the past 12 months, you should query the Job and Sent data views. These data views contain detailed information about email sends and can be used to filter subscribers based on the send date.
SQL Query Example:
SELECT s.SubscriberKey FROM _Sent s JOIN _Job j ON s.JobID = j.JobID WHERE j.SendDate >= DATEADD(month, -12, GETDATE())
: Salesforce Data Views
Mirta
7 days agoRyann
12 days agoTequila
17 days agoLashon
22 days agoKirk
28 days agoLouvenia
1 month agoJosephine
1 month agoReyes
1 month agoHaley
2 months agoClarinda
2 months agoElizabeth
2 months agoRaul
2 months agoCyndy
2 months agoSamira
2 months ago