Hi - I’m trying to configure mailgun to use their EU service smtp.eu.mailgun.org
Is there a service name for the EU mailgun smtp servers or should I just setup a custom smtp host such as:
mail: {
transport: 'SMTP',
options: {
host: 'smtp.eu.mailgun.org',
port: 587,
auth: {
user: 'noreply@example.com',
pass: 'password'
Thanks