14 lines
358 B
Markdown
14 lines
358 B
Markdown
### Options for Email Sending
|
|
|
|
> Add the following lines to seahub\_settings.py to enable email sending using OVH :
|
|
|
|
```
|
|
EMAIL_USE_TLS = True
|
|
EMAIL_HOST = 'pro1.mail.ovh.net'
|
|
EMAIL_HOST_USER = 'admin@delmar.bzh'
|
|
EMAIL_HOST_PASSWORD = 'qmPAzYgJWQqaY&zo3cXhjhVD%agcLZG5'
|
|
EMAIL_PORT = 587
|
|
DEFAULT_FROM_EMAIL = EMAIL_HOST_USER
|
|
SERVER_EMAIL = EMAIL_HOST_USER
|
|
```
|