Return the entire formatted message as a string.
(self)
| 160 | self._default_type = 'text/plain' |
| 161 | |
| 162 | def __str__(self): |
| 163 | """Return the entire formatted message as a string. |
| 164 | """ |
| 165 | return self.as_string() |
| 166 | |
| 167 | def as_string(self, unixfrom=False, maxheaderlen=0, policy=None): |
| 168 | """Return the entire formatted message as a string. |