Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 1.15 KB

mailgun.md

File metadata and controls

26 lines (18 loc) · 1.15 KB

Mailgun

It considered bad practise to send mail through your own server. Instead a lot of people will use some form of SMTP, but STMP can be slow and its recommended that you use an API from a large provider. We've chosen Mailgun as they offer 10,000 emails for free per month - which should be enough for most sites.

Set Up

First sign up for an account at Mailgun. Once signed up you can go Domains -> Add Your Domain. If I was setting one up for bigbitecreative.com I would enter into the box: mg.bigbitecreative.com. You will be asked to make some changes to your DNS. Once these are completed you should see this at the top of your settings:

alt text

Now lets open the .env and you see some mailgun settings:

MAILGUN_KEY=key-xxxxxxxxxxxxxxx-xxxx
MAILGUN_DOMAIN=domain.com
[email protected]

Lets update them with the info above.

MAILGUN_KEY=key-myapikey-here
MAILGUN_DOMAIN=mg.bigbitecreative.com
[email protected]

And thats it! Your site will now be setup to use Mailgun to send emails.