(self, *args, **kw)
| 1197 | self._add_multipart('alternative', *args, **kw) |
| 1198 | |
| 1199 | def add_attachment(self, *args, **kw): |
| 1200 | self._add_multipart('mixed', *args, _disp='attachment', **kw) |
| 1201 | |
| 1202 | def clear(self): |
| 1203 | self._headers = [] |
no test coverage detected