-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for multiple Reply to addresses
- Loading branch information
1 parent
fd69228
commit c6cc197
Showing
3 changed files
with
5 additions
and
8 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,7 +35,7 @@ Code Example | |
cc='[email protected], [email protected]', | ||
bcc=['[email protected]', ('You Know Who', '[email protected]')], | ||
sender=('AwesomeApp', '[email protected]'), | ||
reply_to='[email protected]', | ||
reply_to='[email protected], [email protected]', | ||
attachments=['/full/path/to/attachment.ext'], | ||
custom_headers={'X-Mailer': 'SendMail'} | ||
) | ||
|
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 |
---|---|---|
|
@@ -62,7 +62,7 @@ def test_full_email_is_sent(self): | |
('You Know Who', '[email protected]') | ||
], | ||
sender=('App', '[email protected]'), | ||
reply_to='[email protected]', | ||
reply_to='[email protected], [email protected]', | ||
attachments=[ | ||
os.path.abspath(os.path.dirname(__file__)) + '/LICENSE', | ||
os.path.abspath(os.path.dirname(__file__)) + '/README.rst' | ||
|
@@ -89,7 +89,7 @@ def test_full_email_is_sent_with_details_as_keywords(self): | |
('You Know Who', '[email protected]') | ||
], | ||
sender=('App', '[email protected]'), | ||
reply_to='[email protected]', | ||
reply_to='[email protected], [email protected]', | ||
attachments=[ | ||
os.path.abspath(os.path.dirname(__file__)) + '/LICENSE', | ||
os.path.abspath(os.path.dirname(__file__)) + '/README.rst' | ||
|