You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am new raising issues, dont know if this is the appropriate way.
I have django post office setup and working fine and decided to use mailjet backend, from the documentation, i saw:
I am new raising issues, dont know if this is the appropriate way.
I have django post office setup and working fine and decided to use mailjet backend, from the documentation, i saw:
POST_OFFICE = { 'BACKENDS': { 'default': 'anymail.backends.mailjet.EmailBackend', } }
They work independently, but when i use them together (using mailjet as default post office backend), the emails are not delivered.
EMAIL_BACKEND = 'post_office.EmailBackend' EMAIL_HOST = 'in-v3.mailjet.com' EMAIL_HOST_USER = os.environ.get('EMAIL_HOST_USER') EMAIL_HOST_PASSWORD = os.environ.get('EMAIL_HOST_PASSWORD') EMAIL_USE_TLS = True EMAIL_PORT = 587 DEFAULT_FROM_EMAIL = '[email protected]' POST_OFFICE = { 'BACKENDS': { 'default': 'anymail.backends.mailjet.EmailBackend', } } ANYMAIL = { "MAILJET_API_KEY": "key", "MAILJET_SECRET_KEY": "secret", }
Please help
The text was updated successfully, but these errors were encountered: