Ignore:
Timestamp:
4 Nov 2020, 17:52:22 (4 years ago)
Author:
Henrik Bettermann
Message:

Implement bulk emailing.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.kofa/trunk/src/waeup/kofa/tests/test_smtp.py

    r14016 r16299  
    259259            u'A recipient', u'recpt@example.com',
    260260            u'A subject',
    261             u'This is a test mail.',
    262             cc=True)
     261            u'This is a test mail.',None,
     262            u'A cc recipient <recpt@example.com>',
     263            u'A bcc recipient <recpt@example.com>,A 2nd bcc recipient <recpt@example.com>',
     264            )
    263265        self.assertEqual(mail_id, 'fake-message-id@example.com')
    264266        self.assertEqual(
     
    272274             u'msg: From: A sender <no-reply@waeup.org>',
    273275             u'msg: To: A recipient <recpt@example.com>',
    274              u'msg: Cc: A sender <sender@example.com>',
     276             u'msg: Cc: A cc recipient <recpt@example.com>',
     277             u'msg: Bcc: A bcc recipient <recpt@example.com>,',
     278             u'msg:  A 2nd bcc recipient <recpt@example.com>',
    275279             u'msg: Reply-To: A sender <sender@example.com>',
    276280             u'msg: Subject: A subject',
Note: See TracChangeset for help on using the changeset viewer.