By default, UserFrosting is configured to use an external SMTP mail server of your choice.
Why? Because dual-purposing your web server as an ad hoc mail server (i.e., what you get when you use PHP's mail()
function) tends to lead to all sorts of problems. The biggest problem is that your messages stand a good chance of being marked as spam, or blocked outright, by other mail servers. To understand this, consider how email works:
To send a message to someone's email address, the sending mail server must ultimately ask another mail server to deliver the message to the email address on your behalf - there is no way to directly place a message in someone's inbox! For example, when you send a message to [email protected]
, you are actually asking some other mail server (e.g., mail.compuserve.net
) to deliver your message to the address.
Of course, mail.compuserve.net
, like all email servers, has a problem with spam and phishing attacks. If they just accept from any random mail server, the accounts that they deliver mail to will quickly be flooded with all sorts of junk. Grandma will get hacked.
For this reason, many mail servers are configured to outright reject mail from "untrusted" servers. What makes a server untrusted? Well, pretty much anything:
Getting everything just right (especially getting onto certain email providers' whitelists) can take a long time and be tricky. You could spend a long time getting this just right on your web host server, only to have to start all over again when you decide to move your hosting to another service or IP address!
Best practice, therefore, is to use a completely separate server to send mail for your application. Your application will authenticate with this server when it wants to send out a message. Therefore, you usually need to sign up in some way to obtain credentials.
Your options basically come down to:
In addition, you might also want to be able to receive email - for example, if you have a website hosted at http://www.owlfancy.com
, but you also want people to be able to email you at [email protected]
. All of this should this should be taken into account when selecting a mail service provider.
If you have a Gmail account, you can use Gmail's SMTP servers to send mail from your application. The main limitation, though, is that you can only send as your Gmail account user (and not, for example, [email protected]
), and you can't send more than 99 messages per day.
If you choose this option, your SMTP host will be smtp.gmail.com
, and your credentials will be your full Gmail email address and password. For more information, see this guide.
Coming soon!
If you need to host your own email accounts for users to receive mail (e.g., [email protected]
), third-party services can become very expensive very quickly. Google's G Suite service, for example, would charge you $5 per user account per month! In these situations, running your own mail server would be the wiser option.
If you choose to run your own mail server, we highly recommend Mail-in-a-box. MIAB is a prebuilt distribution, which contains all the software and configuration scripts you need to set up a dedicated mail server. You will need a VPS separate from your web server and with at least 1GB of memory to run this on, which at DigitalOcean will cost you about $10 per month.
Mail-in-a-box will not only set up an SMTP server, but IMAP/POP as well so that you can receive mail for user accounts on a domain associated with your server. It even runs its own web server, to provide a web-based client for these email accounts.