For logging purposes (say, for a contact form) I send an email as follows:
recipients: "blah@blah.com"
from: "Blah <blah@blah.com"
using sendmail via ActionMailer. (Obviously "blah" is a replacement for the real email and real domain).I get mail delivered to blah@blah.com randomly, not always.
So, I've modified the above to:
recipients: "blah@blah.com, other@other.com"
from: "Blah <blah@blah.com"
I am getting all mail delivered to other@other.com, so clearly my config, etc, is fine.So what is the issue? Mail Server? Domain? Loopback?
Really frustrating...