Fix test_email command to use new SSL setting (#3988)
This was missed in pull request #3732 and/or the command didn't exist yet then ...
This commit is contained in:
parent
6a245e121a
commit
0f79c6d7d8
1 changed files with 2 additions and 0 deletions
|
|
@ -23,6 +23,7 @@ class Command(BaseCommand):
|
|||
EMAIL_HOST_PASSWORD,
|
||||
EMAIL_PORT,
|
||||
EMAIL_USE_TLS,
|
||||
EMAIL_USE_SSL,
|
||||
EMAIL_FROM,
|
||||
) = get_email_configuration()
|
||||
|
||||
|
|
@ -32,6 +33,7 @@ class Command(BaseCommand):
|
|||
username=EMAIL_HOST_USER,
|
||||
password=EMAIL_HOST_PASSWORD,
|
||||
use_tls=EMAIL_USE_TLS == "1",
|
||||
use_ssl=EMAIL_USE_SSL == "1",
|
||||
timeout=30,
|
||||
)
|
||||
# Prepare email details
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue