File tree 4 files changed +5
-5
lines changed
4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ settings:
58
58
59
59
CBMAIL = {
60
60
' DEFAULT_REPLY_TO' : " examplereplyto@example.com" ,
61
- ' DEFAULT_SUJECT ' : " Example subject" ,
61
+ ' DEFAULT_SUBJECT ' : " Example subject" ,
62
62
' BASE_URL' : " https://domain.com" ,
63
63
' EXTRA_DATA' : {},
64
64
' WHITELIST' : []
Original file line number Diff line number Diff line change @@ -80,11 +80,11 @@ def get_mail_from(self):
80
80
def get_subject (self ):
81
81
"""
82
82
Returns the subject to be used on the subject email field
83
- If one is not provided it will get the DEFAULT_SUJECT setting
83
+ If one is not provided it will get the DEFAULT_SUBJECT setting
84
84
"""
85
85
if self .subject :
86
86
return self .subject
87
- return settings .DEFAULT_SUJECT
87
+ return settings .DEFAULT_SUBJECT
88
88
89
89
def get_template_name (self ):
90
90
""" Returns the template name to be used to render the email """
Original file line number Diff line number Diff line change 9
9
10
10
DEFAULTS = {
11
11
'DEFAULT_REPLY_TO' : 'examplereplyto@example.com' ,
12
- 'DEFAULT_SUJECT ' : 'Example subject' ,
12
+ 'DEFAULT_SUBJECT ' : 'Example subject' ,
13
13
'BASE_URL' : None ,
14
14
'EXTRA_DATA' : {},
15
15
'WHITELIST' : []
Original file line number Diff line number Diff line change 12
12
),
13
13
CBMAIL = {
14
14
'DEFAULT_REPLY_TO' : "replyto@unittest.com" ,
15
- 'DEFAULT_SUJECT ' : "Unit test default" ,
15
+ 'DEFAULT_SUBJECT ' : "Unit test default" ,
16
16
'BASE_URL' : "https://domain.com" ,
17
17
},
18
18
DEFAULT_FROM_EMAIL = "unit@unit.com" ,
You can’t perform that action at this time.
0 commit comments