![How to manage marketing pressure in Salesforce Marketing Cloud: A practical guide](https://deselect.com/wp-content/uploads/2020/01/manage-marketing-pressure-in-sfmc_2020.png)
An email sent to the right person at the right time is key to a successful email campaign in Salesforce Marketing Cloud (SFMC). But how to determine the appropriate time to send out email campaigns? And how often should they be sent out? A poor email communication strategy leads to more unsubscribes and emails that appear in spam boxes.
One of the reasons for poor email performance in SFMC is not considering marketing pressure. Marketing pressure refers to the manner a brand communicates with its audience. What does it mean and how to decrease the pressure? The secret to managing marketing pressure for an email campaign successfully is the combination of frequency and cadence to avoid marketing pressure.
Firstly, a company should consider how often marketers send email campaigns, to keep track of frequency. This way, users may be less likely to unsubscribe and emails are less likely to end up in spam boxes. Secondly, analyze the behavior of your subscribers: In which time zones do they live? When is the open rate higher? Cadence needs to be analyzed to send the email at the best time to the right person.
How to manage marketing pressure in Salesforce Marketing Cloud (SFMC) by moderating the frequency of email campaigns?
In this article, we will focus on one part of marketing pressure, namely how to optimize the frequency of sent communications in SFMC. We will show you how to manage marketing pressure using SQL and DESelect respectively.
To decrease the level of marketing pressure for your subscribers in SFMC, you have to apply a multi-step approach. We will describe two scenarios to manage marketing pressure using SQL and DESelect:
- In the first scenario, we would exclude the subscribers who received an email in the last 7 days.
- In the second scenario, we would focus on those subscribers who received two or more emails during the last 7 days.
Scenario 1 (a): How to exclude subscribers who received an email in the last 7 days in Salesforce Marketing Cloud (SFMC) using SQL?
Step – 1: Create a suppression data extension (DE).
We will populate this DE with subscribers who received an email in the last 7 days, so we can use it to suppress subscribers from campaigns later. We will call this our “suppression DE”.
- Go to Email Studio and choose from the drop-down menu under ‘Subscribers’ – ‘Data Extensions’.
- Then on the right-hand side click ‘Create’ a standard data extension
The suppression data extension needs to have fields like Subscriber Key, Email Address, Date, and any other fields you need for your campaign.
Step – 2: Create a (SQL) query activity for your suppression DE
- Go to ‘Automation Studio’ which can be found under ‘Journey Builder’
- Choose ‘New Automation’
- As a Starting Source choose ‘Schedule’ and select ‘Run Daily’
- Then add an SQL Query
- Here we would like to query on data views, so we SELECT data view ‘_Subscribers’.
- ‘SubscriberKey’ AS ‘SubscriberKey’ and ‘EmailAddress’ AS ‘EmailAddress’
- FROM _Subscribers
- Then we need to create a relationship based on ‘Subscriber Key’ between 2 data views ‘_Subscribers’ and ‘_Sent’ using INNER JOIN
- WHERE in ‘_Sent’ data view we filter on last 7 days using ‘EventDate’ field
![SQL Query for Marketing Pressure article for Salesforce Marketing Cloud article](https://deselect.com/wp-content/uploads/2020/01/SQL-Query-for-Marketing-Pressure-article-for-Salesforce-Marketing-Cloud-article.png)
Step – 3: In your automation, go to ‘Activity’ and add your own email address for notifications (we recommend doing this for both ‘Runtime Error or Skipped Run’ and ‘Run Completions’
Step – 4: Save and make sure the Automation is running
Scenario 1 (b): How to exclude Subscribers who received an email in the last 7 days in Salesforce Marketing Cloud (SFMC) using DESelect?
- Navigate to DESelect within SFMC
- Choose to create a ‘New Selection’ in DESelect
- In the ‘Selection criteria’ choose data view ‘ _Subscribers’ and drag-and-drop it to the right
- Choose data view ‘_Sent’ and drag-and-drop it on top of the ‘_Subscribers’
- Choose a relationship based on SubscriberKey between them, in this case, ‘_Subcribers’ WITH matching ‘_Sends’
- In the ‘Available Fields’ section below drag-and-drop the field called ‘EventDate’, select ‘Relative’ date and choose ‘After or on’ and then 7 days ‘Before Now’
- Navigate to ‘Target Definition’ and choose ‘Create Data Extension’, Choose fields like Subscriber Key, Email Address, Date, and any other fields you need for your campaign
- Next, you can preview the selection to check the preliminary results
- If you are satisfied with the Preview you can press ‘Run’ to run the selection
![How to avoid marketing pressure in Salesforce Marketing Cloud using DESelect](https://deselect.com/wp-content/uploads/2020/01/How-to-avoid-marketing-pressure-in-Salesforce-Marketing-Cloud-using-DESelect.png)
DESelect will create a (SQL) query activity in the background for you. If you want to make sure this is automated, you can navigate to Automation Studio, create a new automation and add this query. You can then schedule this automation to run on a daily basis (similarly as described above).
Watch this video tutorial to learn how to use SQL and DESelect to exclude subscribers who received an email in Salesforce Marketing Cloud (SFMC) in the last seven days.
Scenario 2 (a) How to find Subscribers who received two or more communications in the last 7 days in Salesforce Marketing Cloud using SQL?
Step – 1: Create a new data extension (DE)
- The suppression Data Extension needs to have at least 3 fields like Subscriber Key, Email Address, Date, and any other fields you need for your campaign
Step – 2: Create a (SQL) query for your suppression DE
- Firstly, we SELECT data view ‘_Sent’, where ‘SubscriberKey’ AS ‘SubscriberKey’
- And data view ‘_Subscribers’ where ‘EmailAddress’ AS ‘EmailAddress’ , and data view ‘_Sent’ ‘EventDate’ AS ‘EventDate’
- FROM _Sent “Sent”
- Choose a JOIN, in this case, INNER JOIN between _Subscribers ON “_Sent”. “SubscriberKey” = “_Subscribers”.”SubscriberKey”
- WHERE we choose the date from data view “_Sent” using field “EventDate” on last 7 days
- AND “_Sent”. “SubscriberKey” IN where we SELECT “_Subscribers”.”SubscriberKey” AS “SubscriberKey”
- FROM _Subscribers “_Subscribers”
- GROUP BY “_Subscribers”.”SubscriberKey” HAVING COUNT( “_Subscribers”. “SubscriberKey”) 2 or more times
![SQL Query Example for Salesforce Marketing Cloud article on Marketing Pressure](https://deselect.com/wp-content/uploads/2020/01/Screenshot-2021-07-23-at-15.55.32.png)
Step – 3: Run the query and populate a new suppression DE
- In your automation, go to ‘Activity’ and add your own email address for notifications (we recommend doing this for both ‘Runtime Error or Skipped Run’ and ‘Run Completions’)
Scenario 2 (b): How to find Subscribers who received two or more communications in the last 7 days in Salesforce Marketing Cloud using DESelect?
Step – 1: Create a selection using DESelect
- Navigate to DESelect within SFMC
- Choose to create a ‘New Selection’ in DESelect
- In the ‘Selection criteria’ choose data view ‘ _Subscribers’ and drag-and-drop it to the right
- Choose data view ‘_Sent’ and drag-and-drop it on top of the ‘_Subscribers’
- Choose a relationship based on SubscriberKey between them, in this case, ‘_Subcribers’ WITH matching ‘_Sends’
- In the ‘Available Fields’ section below drag-and-drop the field called ‘EventDate’, select ‘Relative’ date and ‘After or on’ and choose 7 days ‘Before Now’
- Then choose a field SubscriberKey from ‘_Subscribers’ data view
- Select the filter ‘In results’ and drag-and-drop data view ‘_Sent’ and select ‘SubscriberKey’ as the relationship
![Avoid marketing pressure with DESelect in Salesforce Marketing Cloud](https://deselect.com/wp-content/uploads/2020/01/Screenshot-2021-07-26-at-14.47.23.png)
- Click on the filter icon
- Choose the field ‘SubscriberKey’ and filter ‘Contains’
- Click on the formula icon on the right and choose ‘Count’, to count the number of times SubscriberKey exists in ‘_Sent’
- Select ‘Greater than or equals 2’
- Create a DE on the fly choosing the required fields for your suppression DE like Subscriber Key, Email Address, Date, etc.
![Advanced scenario to avoid marleting pressure in Salesforce Marketing Cloud](https://deselect.com/wp-content/uploads/2020/01/Screenshot-2021-07-26-at-17.21.11.png)
DESelect will create a (SQL) query activity in the background for you. If you want to make sure this is automated, you can navigate to Automation Studio, create a new automation and add this query. You can then schedule this automation to run on a daily basis (similarly as described above).
Watch this video tutorial to learn how to find Subscribers who received two or more communications in SFMC in the last seven days using SQL and DESelect.
Using your suppression data extension (DE) when sending an email with Salesforce Marketing Cloud
The moment you created a suppression DE in SFMC using either SQL or DESelect it is ready to be used for actual email campaigns. That means that you can use it to exclude people from the campaign that you created right away.
Conclusion
Too much marketing pressure can bring negative consequences to your overall campaign performance and cause subscribers attrition. Eventually, poor results of the campaign can have a negative impact on marketing-generated revenue. However, using certain segmentation techniques and marketing automation tools it is possible to improve campaign performance in Salesforce Marketing Cloud!
In this article, we showed you how to manage marketing pressure for your future email campaigns using SQL and DESelect. Our first example included a more technical approach that you can do within SFMC. Our second example showed how to get the same result using drag-and-drop. We hope that these scenarios are useful for you and will help to better manage marketing pressure in Salesforce Marketing Cloud!
- How to manage marketing pressure in Salesforce Marketing Cloud (SFMC) by moderating the frequency of email campaigns?
- Scenario 1 (a): How to exclude subscribers who received an email in the last 7 days in Salesforce Marketing Cloud (SFMC) using SQL?
- Scenario 1 (b): How to exclude Subscribers who received an email in the last 7 days in Salesforce Marketing Cloud (SFMC) using DESelect?
- Scenario 2 (a) How to find Subscribers who received two or more communications in the last 7 days in Salesforce Marketing Cloud using SQL?
- Scenario 2 (b): How to find Subscribers who received two or more communications in the last 7 days in Salesforce Marketing Cloud using DESelect?
- Using your suppression data extension (DE) when sending an email with Salesforce Marketing Cloud
- Conclusion
Latest Articles
-
Beyond Limits – Exploring Smart Communication Capping
Beyond Limits: Exploring Smart Communication Capping In this comprehensive guide, we explore why communication capping matters and how smart communication capping maximizes engagement, marketing ROI, and compliance. Why Communication Capping Matters In today’s landscape, customers can be overwhelmed with marketing messages across multiple channels. In our 2024 study of 234 consumers across the United States, […]February 18, 2025Top 10 Marketing Operations Predictions for 2025
We’re excited to unveil our Top 10 Marketing Operations Predictions for 2025. The exponential growth of marketing automation, the impact of AI on strategy and execution, and the drive to become more intentional and data-driven means we’re going to see a lot of interesting dynamics and progress in marketing. As 2024 closes out, we took a step back to think about what the future holds for marketing operations and came up with our first-ever list of predictions. Let’s dive in!December 19, 2024The Ultimate Guide to Salesforce Marketing Cloud Advanced Edition
At the Marketing Keynote at Dreamforce 2024, Salesforce announced an exciting expansion to its suite of marketing solutions — the Marketing Cloud Advanced Edition, which builds upon the existing Marketing Cloud Growth Edition and offers even more powerful tools to help small and medium-sized businesses (SMBs) engage their customers in a more personalized and efficient way. This article explores the features, benefits, and impact of Advanced Edition and what it means for SMBs striving to innovate.September 19, 2024DESelect Segment vs Audience Builder: Which Salesforce Marketing Cloud Solution to Choose
DESelect Segment VS Audience Builder Audience Builder Sunset: DESelect Segment for Marketing Cloud Segmentation Create audiences without the need for code through DESelect Segment Learn more → Case Study: Boozt Boozt turned to DESelect Segment to perform their segmentation after moving from Audience Builder and SQL queries. The results: Technical marketers save 15% […]July 1, 2024Join our newsletter to receive updates and helpful SFMC guides.
![Reach the most targeted<br/> audiences in half the time](https://deselect.com/wp-content/uploads/2023/03/Deedee_SkiingArtboard.png)