Changeset 5552
- Timestamp:
- 06/27/07 07:44:29 (1 year ago)
- Files:
-
- django/trunk/docs/email.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/email.txt
r5551 r5552 250 250 email = EmailMessage('Hello', 'Body goes here', 'from@example.com', 251 251 ['to1@example.com', 'to2@example.com'], ['bcc@example.com'], 252 headers = {'Reply-To : 'another@example.com'})252 headers = {'Reply-To': 'another@example.com'}) 253 253 254 254 The class has the following methods:
