How to set up a domain
Before creating an email newsletter, you need to set up a domain from which you will send emails.
When creating an email template, you can specify any of these addresses as the sender. This address will be visible to the recipient:
The first thing to do after purchasing a domain is to confirm your rights to it. Only this way you can complete the email authentication procedure from the email server. Without this, your emails can easily go to Spam.
Authentication consists of setting up SPF, DKIM, and DMARC on the DNS server of your domain. You need to go to the domain control panel and add several TXT records there. This section is usually called «DNS settings».
Setting up SPF, DKIM, DMARC will protect your subscribers from phishing attacks from your domain.
It also improves the reputation of your domain and deliverability of emails.
Without authentication, you cannot enable statistics in postmaster.
SPF (Sender Policy Framework) is a TXT record with a list of IP addresses that you allow to send emails from your domain.
We recommend that you prohibit sending out emails from all IP addresses that are not listed in SPF. To do this, you need to enter records of different versions:
Domain | Type of record | Record |
---|---|---|
example.com | TXT | v=spf1 include:spf.aksend.net -all |
example.com | TXT | spf2.0/pra include:spf.aksend.net -all |
If you use your sender domain for sending campaigns, then specify which SPF records already exist and add "include:spf.aksend.net" to them.
The DKIM (Domain Keys Identified Mail) technology adds a digital signature to the email so that email providers can make sure that it is sent from your domain.
DKIM stores two encryption keys - private and public. The private one is used to sign emails. It is known only to the sender. The public one is added to the DNS records as a TXT file.
DKIM verification is conducted automatically on the recipient's side. If the domain is not authorized to send emails, your email may be marked as suspicious or placed in spam, depending on the recipient's policy.
You need to enter the following records (the Altcraft ak key is used):
Domain | Type of record | Record |
---|---|---|
ak._domainkey.example.com | TXT | v=DKIM1; k=rsa; p=XXXXXXXXXX |
_domainkey.example.com | TXT | o=-; |
XXXXXXXXXX is a unique code generated in the Altcraft Platform admin panel. We can help you to create a personal key - contact team@altcraft.com specifying the domain name.
DMARC (Domain-based Message Authentication, Reporting and Conformance) is a policy where you specify what to do with emails if something is wrong with SPF and DKIM records. We recommend that you set rules prohibiting receiving emails from outside IP addresses or incorrectly signed emails.
Domain | Type of record | Record |
---|---|---|
_dmarc.example.com | TXT | v=DMARC1; p=reject; sp=reject; mailto:report@example.com |
BIMI (Brand Indicators for Message Identification) is a means of identifying the sender that adds the brand logo to the newsletter.
A tracking domain is a domain for tracking subscriber activity. It helps you to find out whether your subscriber opens your emails, reads them, which links they follow, etc.
Make the following record on the subdomain:
Domain | Type of record | Record |
---|---|---|
trk.example.com | CNAME | trk.aksend.net |