I’m having trouble setting up email. I am running Ghost v4.12.1, and originally I set up SMTP in config.production.json. When I went to enable Mailgun in settings, I saw it asked for an API key, so I added the information there.
Should I be using both? I tried to send a test email and I got “the server encountered an error.”
My site is at https://thecsweekly.com
My config file:
"mail": {
"transport": "SMTP",
"options": {
"service": "Mailgun",
"auth": {
"user": "postmaster@cs.thecsweekly.com",
"pass": "password_here"
}
}
},