Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Using multiple smtp servers with same domain?

I am using MailGun for sending emails and Zoho for receiving emails, which works fine.

But then I wanted to enable sending from Zoho to be able to reply to received emails, so I added Zoho spf and DKIM to the domain along with MailGun, which also worked perfect emails from both servers are signed and sent correctly.

My question: is there any drawback from doing this? like for example domain get blacklisted, or flaged as spam?

My Second Question: why people dont do this? I can even add a third smtp server and separate email tasks: 1st server for transactional emails, 2nd server for bulk, 3rd server for receiving.

like image 905
DeepBlue Avatar asked Feb 09 '17 19:02

DeepBlue


People also ask

Can I have two mail servers with same domain?

Of course, yes. A domain can have as many MX records (and thus, mail servers) as you wish. You can even set up priorities between them. For example, the MX records of the domain gmail.com are (you can get this a command host -t MX -v gmail.com ):

Can I use another SMTP server for sending mail?

Yes! You can. If you're using other email clients, such as Thunderbird or Outlook, you can use the Gmail SMTP server details to still send emails via your Gmail account. However, remember that SMTP is just for sending email.

Can we have two MX records in a single domain?

You can use a single Internet domain with a single domain name or single Internet domain name with two balanced servers when using multiple mail exchanger records (MX records). Two examples for setting up multiple MX records in the DNS are as follows: Using a single Internet domain with a single domain name.


2 Answers

First question:

As long as both SMTP servers are added to your SPF records, and use DKIM, there is absolutely no reason why your emails will be marked as spam (unless the content of the emails are spammy and are picked up through content filters). Email security protocol isn't very rigorous and SPF and DKIM are responsible for a large amount of detected spam.

Second question:

I'm sure a lot of people do actually employ this-- a quick google search backs this up. Most people aren't using SMTP for bulk email. Maximizing the output of an SMTP server usually doesn't require more than one, but it certainly doesn't mean it won't be practical.

like image 71
squirrel4123 Avatar answered Oct 13 '22 03:10

squirrel4123


There is no such drawback in doing this. Just remember excessive and similar type mails from one origin often lead to the mail server being marked as spam. Please go through the following articles: https://www.juno.com/start/landing.do?page=www/legal/spam-avoid https://www.salesforce.com/blog/2015/02/5-mistakes-that-will-send-you-to-the-spam-folder.html

As for your second question: People Do this. Approaches and services may vary.

like image 41
Shakti Phartiyal Avatar answered Oct 13 '22 01:10

Shakti Phartiyal