I've already setup an SPF TXT record for my Google Apps mail and everything's a-ok, but I need to send email from my webapp using php's mail(), so I need to add my host's domain (say entity.ca) as a permitted sender. How do I do this?
If the original record from Google Apps docs is v=spf1 include:_spf.google.com ~all, will the following be correct for adding my domain:
v=spf1 a:entity.ca include:_spf.google.com ~all
sorry, I found http://www.zytrax.com/books/dns/ch9/spf.html and What should I use for SPF record of my domain? on Google but it's quite confusing.
Thanks, y'all.