Changeset 40 for branches/3.0/turbomail/message.py
- Timestamp:
- 10/18/07 01:15:41 (1 year ago)
- Files:
-
- 1 modified
-
branches/3.0/turbomail/message.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/3.0/turbomail/message.py
r39 r40 119 119 if not self._id or (self._processed and self._dirty): 120 120 self.__dict__['_id'] = str(uuid()) 121 self._processed = False 121 122 122 123 return self._id … … 137 138 #if not self._dirty and self._processed: 138 139 # return self._mime 139 140 141 self._processed = False 142 140 143 plain = MIMEText(self._callable(self.plain).encode(self.encoding), 'plain', self.encoding) 141 144 rich = self.rich and MIMEText(self._callable(self.rich).encode(self.encoding), 'html', self.encoding) or None
