Changeset 7183
- Timestamp:
- 02/29/08 11:00:35 (9 months ago)
- Files:
-
- django/trunk/django/core/mail.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/django/core/mail.py
r6989 r7183 319 319 If auth_password is None, the EMAIL_HOST_PASSWORD setting is used. 320 320 321 N OTE: This method is deprecated. It exists for backwards compatibility.322 New codeshould use the EmailMessage class directly.321 Note: The API for this method is frozen. New code wanting to extend the 322 functionality should use the EmailMessage class directly. 323 323 """ 324 324 connection = SMTPConnection(username=auth_user, password=auth_password, … … 336 336 If auth_password is None, the EMAIL_HOST_PASSWORD setting is used. 337 337 338 N OTE: This method is deprecated. It exists for backwards compatibility.339 New codeshould use the EmailMessage class directly.338 Note: The API for this method is frozen. New code wanting to extend the 339 functionality should use the EmailMessage class directly. 340 340 """ 341 341 connection = SMTPConnection(username=auth_user, password=auth_password,
