forked from vintasoftware/django-templated-email
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGELOG
90 lines (69 loc) · 2.3 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
v0.4.9
------
Be a bit friendlier if someone sets TEMPLATED_EMAIL_FILE_EXTENSION='.html' strip the leading . so inconsistent behavior is not experienced (using '.html' will fall back to legacy loading behaviour when it doesn't find filename..html).
v0.4.8
------
Adds pep-8 fixes, and basic testing infrastructure from https://github.com/bradwhittington/django-templated-email/pull/24 and https://github.com/bradwhittington/django-templated-email/pull/23
Amends AUTHORS file
v0.4.7
------
Refactor to make template_prefix/suffix passed through everywhere (taking
precedence), with template_dir/file_extension available on backends where it
makes sense, with higher priority on template_prefix/suffix.
Re-formatted changelog
Allow TEMPLATED_EMAIL_BACKEND to be a class
v0.4.6
------
Reworked vanilla_django backend allows you to extract the EmailMessage object
without sending email. Refactored code for PEP8 compliance
v0.4.5
------
Better error handling for the PostageApp backend
v0.4.4
------
Allow overriding of file_extension on a call to send_mail for issue #12
https://github.com/bradwhittington/django-templated-email/issues/12
v0.4.3
------
Allow overriding connection, auth_user and auth_password ala
django.core.mail.send_mail for issue #10
https://github.com/bradwhittington/django-templated-email/issues/10
v0.4.2
------
Allow overriding of template_dir on a call to send_mail for issue #12
https://github.com/bradwhittington/django-templated-email/issues/12
v0.4.1
------
Basic fix for issue #3
https://github.com/bradwhittington/django-templated-email/issues/3 to support
better template inheritence
v0.4
----
Adds support for cc'ing and bcc'in recipients, switches mailchimp backend
to use greatape, via @nitinhayaran
v0.3.3
------
Fixes template prefix dir not being used correctly
v0.3.2
------
Bubble up errors on templates when there is an issue with finding blocks
v0.3.1
------
Adds configuration variables for settings.py to change template dir, and
template extension
v0.3
----
Plain part, subject, and HTML part now supported as blocks in a single
.email template
v0.2.1
------
Adds support for adding custom headers where supported
v0.2
----
Adds support for postageapp
v0.1.3
------
Disables autoescaping when rendering templates.
v0.1.2
------
Adds initial support for Mailchimp STS backend