Assume my ip address is 222.222.222.1 222.222.222.2 and my domain is mydomain.com
I wish to send regular emails on behalf of my customers domain from my servers. (relaying/spoofing)
hence my customers will need to enter my SPF include text into their txt record (v=spf1 ...). The same as I add salesforce.com and others to my txt record(v=spf1 ...):
e.g. "v=spf1 a mx ip4:222.222.222.1 ip4:222.222.222.2 include:_spf.salesforce.com -all"
What I don't understand is how I separate my SPF record (for sending my domains emails) with our email services SPF lookup (used by our customers)
This nearly answers it, except it does not say how to setup the Zone file record: How to create SPF record for many IPs (SPF longer than 255 characters)
Do I setup a txt record, an A record, a CNAME record, what type of record and how. I would assume this string goes in the data value area of my record???
e.g. "v=spf1 ip4:222.222.222.1 ip4:222.222.222.2 -all" and somehow it needs this subdomain "_spf.mydomain.com"
and then my customers txt record for SPF looks similar to this:
e.g. "v=spf1 a mx include:_spf.mydomain.com -all"
I am somewhat confident I am on the right track. I just do not know how it is implemented in my zone file.