Mobile app version of vmapp.org
Login or Join
Radia820

: When to use an external e-mail service? (MailChimp, MailGun etc) Noob alert. I've been reading about the big deal that sending massive campaigns is, in terms of not getting banned, warming up

@Radia820

Posted in: #Email #Mailchimp #MailingList #Newsletter #Spam

Noob alert. I've been reading about the big deal that sending massive campaigns is, in terms of not getting banned, warming up IP's and so on.

The thing is that I have a site that deals with a few transactional e-mails, very low volume, so I'm using PHPMailer from my own server, never had a problem that I know of.

But then, when doing newsletters (to 5000 subscribers) I've been using MailChimp, basically because I wanted to avoid the html/css mess that e-mails are. Since their pricing is no good for our usage, I've been looking other options like MailGun, which also deals with transactional e-mails.

So I'm wondering, how can I know when I should consider stop using my own server and paying for a professional service if ever? What it really depends on? Is there a number or subscribers or any other tangible metric? It all seems very eerie.

Now that I've been setting up MailGun for transactional e-mails (so I can easily track opens, clicks and so on) I've been wondering those questions (i.e. "why am I coding to use an external API instead of this simple and seemingly effective PHP class")

The question goes to both newsletter campaigns (massive sendings at once) and transactional e-mails.

Thank you.

10.02% popularity Vote Up Vote Down


Login to follow query

More posts by @Radia820

2 Comments

Sorted by latest first Latest Oldest Best

 

@Jennifer507

a very good read about what it takes to send email successfully - blog.codinghorror.com/so-youd-like-to-send-some-email-through-code/

10% popularity Vote Up Vote Down


 

@Cugini213

The key really to ensuring your mail server does not get blacklisted for spamming is to make sure that you only send emails to people who want them and have asked for them, and if you include a working unsubscribe link people can leave your mailing list without any issues, since the main reasons servers get blacklisted are for high numbers of unwanted email messages and unsubscribe links that don't work properly.

In answer to your question the best time to stop using your own server and pay for a professional service is probably when one or more of the following are true:


the server is also used for your companies corporate email accounts and so if blacklisted would have a detrimental impact on your day-to-day business communications;
the bandwidth usage required to send all the messages impacts on your business;
your server seems to frequently get blacklisted and you wish another company to manage the process (including the time and cost) of getting unblacklisted and to at any one time always have a pool of good IP addresses from which they can send emails to maintain a working service for you;
your server fails to respond to its other core purposes while sending out email campaigns, for example if it is also responsible for your website or webmail hosting;
the features of an external service are worth the cost (such as WYSIWYG editors, templating, HTML and Plain Text emailing, reporting tools etc.);
the cost of outsourcing works out to be cheaper than the costs involved in running your own server;
you worry about the security of your server and do not have the expertise to ensure it is kept backed-up, software and anti-virus kept up-to-date, and you are not sure if you would even know if the email contact lists are sufficiently protected from hackers, and therefore the security and privacy features of an external service provide peace-of-mind;
the frequency of mail-outs is such that your server has not finished sending out the first email campaign when it must already begin the next.


Obviously there could be many more reasons but perhaps this covers the more prominent. If keeping costs low is the most important priority then paying for a professional service may never help you toward this objective.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme