forked from Pylons/pyramid_mailer
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixes Pylons#7 incorrect header (bcc) added to mail response
- Loading branch information
1 parent
3092896
commit 7b3dcaa
Showing
3 changed files
with
1 addition
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -130,18 +130,6 @@ def test_send_without_body(self): | |
|
||
mailer.send(msg) | ||
|
||
def test_bcc(self): | ||
|
||
from pyramid_mailer.message import Message | ||
|
||
msg = Message(subject="testing", | ||
recipients=["[email protected]"], | ||
body="testing", | ||
bcc=["[email protected]"]) | ||
|
||
response = msg.get_response() | ||
self.assert_("Bcc: [email protected]" in str(response)) | ||
|
||
def test_cc(self): | ||
|
||
from pyramid_mailer.message import Message | ||
|