Currently I have been using my licensed outlook email address to send emails in django using the below settings
EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend'
EMAIL_USE_TLS = True
EMAIL_HOST = smtp.outlook.office365.com
EMAIL_PORT = 587
EMAIL_HOST_USER = '[email protected]'
EMAIL_HOST_PASSWORD = 'Password'
Recently we have setup a new shared mailbox '[email protected]' to replace it with my email but having issues sending emails as it doesn't accepts the credentials (i.e password) and throws an SMTPAuthenticationError exception.
Is it possible to send emails using the shared mailbox over smtp server ? If yes, how can I achieve this in Django ?