Changes between Initial Version and Version 1 of Ticket #12666, comment 11
- Timestamp:
- Nov 28, 2011, 3:35:39 AM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #12666, comment 11
initial v1 1 1 In django/core/mail/message.py (Django 1.3.1) 2 {{{ 2 3 msg['Date'] = formatdate() 4 }}} 3 5 4 There is no localtime=Trueand emails are sending using UTC6 There is no `localtime=True` and emails are sending using UTC 5 7 When I correct django/core/mail/message.py to 8 {{{ 6 9 msg['Date'] = formatdate(localtime=True) 10 }}} 11 Then emails are being sent with correct Date header (using local time with timezone) 7 12 8 Then emails are being sent with correct Date header (using local time with timezone) 13 ''EDIT(aaugustin): fixed formatting''