I'd like for my users to be able to enter their email-address
and message
and then send the email with the 'from address' being their own email-address. Currently the EMAIL_HOST
is set on our own domain and the emails arrives when it is sent with a "from address" equal to our HOST_USER
, but not if it is anything else. Is this possible?
Our settings:
EMAIL_HOST = 'smtp02.hostnet.nl'
EMAIL_PORT = 587
EMAIL_USE_TLS = True
EMAIL_HOST_USER = "xxx"
EMAIL_HOST_PASSWORD = "xxx"
EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend'