Setup Email SMTP Provider
Set Diffgram Mailer to your own SMTP provider
Diffgram supports custom SMTP providers for email sending. This allows you to integrate your preferred email providers like AWS SES, Mailgun, Sendgrid, Mailchimp, or any custom SMTP service.
Environment Variables
This is an example of the environment variables required to set up SMTP provider. For general information see: Settings, Environment Variables and Secrets
SMTP_USERNAME = "[email protected]"
SMTP_PASSWORD = "your_smtp_password"
SMTP_HOST = 'smtp.mailgun.org'
SMTP_PORT = "465"
SMTP_FROM_EMAIL = "[email protected]"
EMAIL_VALIDATION= "True" # Set to True if you want email verification in Diffgram.
See our Helm chart here to see where you need to update the variables.
Updated over 1 year ago