Return the entire formatted message as a string.
(self)
| 166 | self._default_type = 'text/plain' |
| 167 | |
| 168 | def __str__(self): |
| 169 | """Return the entire formatted message as a string. |
| 170 | """ |
| 171 | return self.as_string() |
| 172 | |
| 173 | def as_string(self, unixfrom=False, maxheaderlen=0, policy=None): |
| 174 | """Return the entire formatted message as a string. |