forked from Pylons/pyramid_mailer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCHANGES.txt
40 lines (27 loc) · 1.11 KB
/
CHANGES.txt
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
0.6 (2012-01-22)
----------------
- Use ',' as an email header field separator rather than ';' when multiple
values are in the same header (as per RFC822).
- Allow lists of recipient emails to be tuples or lists (previously it was
just lists).
- Don't include ``Bcc`` header in mail messages (breaks secrecy of BCC).
See https://github.com/Pylons/pyramid_mailer/pull/10
0.5.1 (2011-11-13)
------------------
- Fixed a bug where the mailer was only sending email to addresses in
the "TO" field.
0.5 (2011-10-24)
----------------
- Drop Lamson dependency by copying Lamson's MailResponse and dependent code
into ``pyramid_mailer.response``.
0.4.X
-----
- ``pyramid_mailer.includeme`` function added for
``config.include('pyramid_mailer')`` support
- ``pyramid_mailer.testing`` module added for
``config.include('pyramid_mailer.testing')`` support.
- ``pyramid_mailer.get_mailer`` API added (see docs).
- ``pyramid_mailer.interfaces`` module readded (with marker IMailer interface
for ZCA registration).
- ``setup.cfg`` added with coverage parameters to allow for ``setup.py
nosetests --with-coverage``.