You have found an old page
Visit the new DocsTyk supports multiple email back ends, they are very straightforward to configure in the tyk_analytics.conf
file:
SendGrid
"email_backend": {
"enable_email_notifications": true,
"code": "sendgrid",
"settings": {
"ClientKey": "KEY"
},
"default_from_email": "[email protected]",
"default_from_name": "A guy at a place"
},
MailGun
"email_backend": {
"enable_email_notifications": true,
"code": "mailgun",
"settings": {
"Domain": "KEY",
"PrivateKey": "KEY",
"PublicKey": "KEY"
},
"default_from_email": "[email protected]",
"default_from_name": "A guy at a place"
},
AmazonSES
"email_backend": {
"enable_email_notifications": true,
"code": "amazonses",
"settings": {
"Endpoint": "Endpoint",
"AccessKeyId": "Access-key",
"SecretAccessKey": "KEY"
},
"default_from_email": "[email protected]",
"default_from_name": "A guy at a place"
},