Sender Authentication Package with SPF configuration
Get link
Facebook
X
Pinterest
Email
Other Apps
Sender Authentication Package with SPF configuration
Sender Authentication Package :
It's a branding tool which has a package of features that marketing cloud configures for you.
SAP Features
Account Branding - Marketing Cloud brands your account with your chosen authenticated custom domain. This feature modifies view-as-a-webpage, link and image wrapping, and removes all references to Marketing Cloud in favor of your custom authenticated domain.
Private Domain for Email sending - This feature assigns a domain used to send email. This domain acts as the From address for your email sends. Salesforce Marketing Cloud authenticates your email sends using the Sender Policy Framework (SPF), Sender ID, and DomainKeys/DKIM authentication.
Custom Domain for CloudPages - This feature includes a private domain for CloudPages.
Dedicated IP Address - This feature assigns a unique IP address to your account. All email messages sent from your account from Marketing Cloud use this IP address. This IP address represents most of your sending reputation.
Reply Mail Management - This feature controls the replies you receive from your subscribers. You can assign filters for out-of-office messages and manual unsubscribe requests.
In this blog we will learn about SPF and why we need them for SAP configuration.
SENDER POLICY FRAMEWORK
What is Sender Policy Framework (SPF)
Its a framework , that is defined by the public domain name servers for email authentication.
SPF is added as a TXT record on the public DNS.
Verifies the IP address of the sending server and prevents from spoof or phishing emails.
Increases domain reputation.
Recipient servers trust your emails.
Lets consider an example and see how SPF validates email sends:
Shashi works for an organization ABC as a marketer who sends email campaign to subscribers, ABC uses marketing cloud tool to send emails and marketing tool uses OMM servers to process email and route the emails.
Sender Profile :
Name : ABC
Email : shashi@abc.com
Delivery Profile :
IP : 1.1.1.1
If you want to know how SFMC processes email send here is the link
Shashi sends an email , OMM processes the emails and adds email headers to the email:
1. Connecting IP : 1.1.1.1
2. From : shashi@abc.com
3. To : raj@gmail.com
4. Return path : shashi@abc.com
Email is received by the Gmail Server, it extracts the return path domain and validates the domain with the DNS for SPF TXT type records against Connecting IP, if the SPF records entries are present it passes the validation, if not it fails and take action on the sender email based on the SPAM filter definition and mark the email as SPAM.
Now, let's consider what happens when someone impersonates your sender profile.
Sender Profile :
Name : ABC
Email : shashi@abc.com
Delivery Profile :
IP : 12.12.12.12
Mail Server from where the email is send will add the below headers :
1. Connecting IP : 12.12.12.12
2. From : shashi@abc.com
3. To : raj@gmail.com
4. Return path : badguy@xyz.com
When the email is received by the Gmail server, it validates the DNS record for xyz.com
with the SPF records against the Connecting IP 12.12.12.12 if the validation fails, it will mark the email as SPOOF.
Example of SPF record : Type is TXT
"v=spf1 ip4:192.0.2.0/24 ip4:198.51.100.123 a -all"
CLOUD PAGE ENABLEMENT - PART 1 CREATE A CLOUD PAGE IN MARKETING CLOUD USE CASE : Create a landing page in marketing cloud to collect consent from subscribers. Step 1: Create a landing page and publish it [no coding required] Step 2: Build a form control using bootstrap <form class = "row g-3" action = "https://tenantEndpoint/ConsentCollection" method = "Post" > </form> Update your form "action" attribute value with your cloud page URL. Method attribute "Post" Add form controls To collect email, add the below form control <div class = "col-md-6" > <label for = "inputEmail4" class = "form-label" > Email </label> <input type = "email" class = "form-control" id = "inputEmail4" name = "inputEmail4" value = "%%=v(@inputEmail4)=%%" required %% = ...
TROUBLESHOOTING JOURNEY SENDS First step towards troubleshooting in SFMC is to install Query Studio from AppExchange. https://appexchange.salesforce.com/appxListingDetail?listingId=a0N3A00000FP3yFUAT Once you have access to Query studio you can write SQL queries and troubleshoot the issues quickly. If you are building a complex queries for a use case, you can write and execute the queries to see if it returns the desired output. Once, you are satisfied with your query you can save and add it to query activity. You can also save the output into a data extension if required, by default query studio stores the output into a data extension under the folder QueryStudioResults. If you have to execute another SQL with the output of the previous result, you can reference the Data Extensions and apply it in your FROM statement. FAQ : 1. How to find out who all did not receive email during journey send ? Best practice is to enable send logging for your account. This will help a-lot during troubl...
CONSIDERATIONS FOR JOURNEY BUILDER WHAT HAPPENS WHEN YOU SEND AN EMAIL OUTBOUND MAIL MANAGEMENT GETS INVOKED BY MARKETING CLOUD , OMM IS NOT IN OUR CONTROL BUT LETS GO THROUGH BEHIND THE SCENE ACTIONS. 1. OOM PREPARES DATABASE FOR THE JOBS, OOM ANALYZES THE EMAIL, WHETHER IT'S A TEMPLATE BASED EMAIL OR HTML, WHETHER EMAILS CONTAINS PERSONALIZATIONS OR DYANMIC CONTNETS. 2. OOM STRUCTURES THE EMAIL BASED ON HEADER , BODY AND FOOTER. OOM RETRIEVES THE SUBJECT LINE , BODY CONTENT , AMPSCRIPT IN THE EMAIL AND INTERPRETS THE AMPSCRIPT AND RETIRVES IMAGES. 3. BASED ON THE DATABASE AND STRUCUTRE MAINATAINED BY THE OOM, IT DETERMINES THE CONTENT FOR THE SUBSCRIBERS AND PROCESSES TO MAINTAIN THE PLACEHOLDERS FOR EACH SUBSCRIBERS. 4. OOM HAS PLACED THE PROCESSES IN THE QUEUE, OOM BUNDLES EMAILS IN 500 BATCHES AND SEND TO SUBSCRIBERS INBOX. NOW WE HAVE THE BACKGROUD , WHAT ARE THE CONSIDERATIONS FOR BUILDING A JOURNEY JOURNEY PERFORMANCE ARE BASED ON : 1. DATA M...
Understanding Transactional Messaging Home Page Understanding Transactional Messaging Transactional messaging refers to the process of sending automated messages to users in response to specific actions or events. These messages are typically triggered by user interactions or system events and are often personalized and time-sensitive. The primary goal of transactional messaging is to provide relevant and timely information to users based on their actions. Key Characteristics of Transactional Messaging Triggered by User Actions: Transactional messages are usually triggered by ...
Preference Center Demistifier Home Page Preference Center Demystified Email preference centers can unlock a wealth of subscriber information if executed properly. Learn more about them to create the personalized email experiences that build loyalty and trust. ...
CLOUD PAGE ENABLEMENT - PART 1 CREATE A CLOUD PAGE IN MARKETING CLOUD USE CASE : Create a landing page in marketing cloud to collect consent from subscribers. Step 1: Create a landing page and publish it [no coding required] Step 2: Build a form control using bootstrap <form class = "row g-3" action = "https://tenantEndpoint/ConsentCollection" method = "Post" > </form> Update your form "action" attribute value with your cloud page URL. Method attribute "Post" Add form controls To collect email, add the below form control <div class = "col-md-6" > <label for = "inputEmail4" class = "form-label" > Email </label> <input type = "email" class = "form-control" id = "inputEmail4" name = "inputEmail4" value = "%%=v(@inputEmail4)=%%" required %% = ...
TROUBLESHOOTING JOURNEY SENDS First step towards troubleshooting in SFMC is to install Query Studio from AppExchange. https://appexchange.salesforce.com/appxListingDetail?listingId=a0N3A00000FP3yFUAT Once you have access to Query studio you can write SQL queries and troubleshoot the issues quickly. If you are building a complex queries for a use case, you can write and execute the queries to see if it returns the desired output. Once, you are satisfied with your query you can save and add it to query activity. You can also save the output into a data extension if required, by default query studio stores the output into a data extension under the folder QueryStudioResults. If you have to execute another SQL with the output of the previous result, you can reference the Data Extensions and apply it in your FROM statement. FAQ : 1. How to find out who all did not receive email during journey send ? Best practice is to enable send logging for your account. This will help a-lot during troubl...
CONSIDERATIONS FOR JOURNEY BUILDER WHAT HAPPENS WHEN YOU SEND AN EMAIL OUTBOUND MAIL MANAGEMENT GETS INVOKED BY MARKETING CLOUD , OMM IS NOT IN OUR CONTROL BUT LETS GO THROUGH BEHIND THE SCENE ACTIONS. 1. OOM PREPARES DATABASE FOR THE JOBS, OOM ANALYZES THE EMAIL, WHETHER IT'S A TEMPLATE BASED EMAIL OR HTML, WHETHER EMAILS CONTAINS PERSONALIZATIONS OR DYANMIC CONTNETS. 2. OOM STRUCTURES THE EMAIL BASED ON HEADER , BODY AND FOOTER. OOM RETRIEVES THE SUBJECT LINE , BODY CONTENT , AMPSCRIPT IN THE EMAIL AND INTERPRETS THE AMPSCRIPT AND RETIRVES IMAGES. 3. BASED ON THE DATABASE AND STRUCUTRE MAINATAINED BY THE OOM, IT DETERMINES THE CONTENT FOR THE SUBSCRIBERS AND PROCESSES TO MAINTAIN THE PLACEHOLDERS FOR EACH SUBSCRIBERS. 4. OOM HAS PLACED THE PROCESSES IN THE QUEUE, OOM BUNDLES EMAILS IN 500 BATCHES AND SEND TO SUBSCRIBERS INBOX. NOW WE HAVE THE BACKGROUD , WHAT ARE THE CONSIDERATIONS FOR BUILDING A JOURNEY JOURNEY PERFORMANCE ARE BASED ON : 1. DATA M...
Understanding Transactional Messaging Home Page Understanding Transactional Messaging Transactional messaging refers to the process of sending automated messages to users in response to specific actions or events. These messages are typically triggered by user interactions or system events and are often personalized and time-sensitive. The primary goal of transactional messaging is to provide relevant and timely information to users based on their actions. Key Characteristics of Transactional Messaging Triggered by User Actions: Transactional messages are usually triggered by ...
Preference Center Demistifier Home Page Preference Center Demystified Email preference centers can unlock a wealth of subscriber information if executed properly. Learn more about them to create the personalized email experiences that build loyalty and trust. ...
Journey Builder REST API Documentation Home Page Journey Builder REST API Documentation Introduction The Journey Builder REST API allows you to programmatically interact with the Journey Builder feature of Salesforce Marketing Cloud. With this API, you can create, update, and manage customer journeys, as well as perform various operations related to contacts and interactions within those journeys. This document provides detailed information on how to use the Journey Builder REST API to integrate and automate your marketing workflows. Base URL The base URL for accessing the Journey Builder REST API is: ...
The information provided on this technical blog is for general informational purposes only. As a SFMC (Salesforce Marketing Cloud) Technical Architect, I strive to offer accurate and up-to-date content related to SFMC and its associated technologies. However, please note that technology is constantly evolving, and the information provided may become outdated or inaccurate over time.
The content published on this blog represents my personal views and experiences as a SFMC Technical Architect and does not necessarily reflect the official views or opinions of any organization or employer I may be affiliated with.
While I make every effort to ensure the accuracy and reliability of the information presented, I cannot guarantee its completeness, suitability, or applicability to your specific circumstances. Therefore, it is essential to verify any information provided and make your own independent assessments or seek professional advice if needed.
Furthermore, any actions taken based on the information provided on this blog are at your own risk. I shall not be held liable for any damages, losses, or inconveniences arising from the use of the information presented here.
Please keep in mind that SFMC and its associated technologies are complex and require technical expertise for proper implementation and management. It is recommended to consult with qualified professionals or official SFMC documentation for comprehensive guidance.
Finally, please note that any product or company names mentioned on this blog are trademarks or registered trademarks of their respective owners. The mention of these trademarks or registered trademarks does not imply any endorsement or affiliation with the blog.
By accessing and using this blog, you agree to the terms of this disclaimer. If you do not agree with any part of this disclaimer, please refrain from using this blog.
Comments
Post a Comment