SMTP 'expn' command -- expands a mailing list.
(self, address)
| 597 | vrfy = verify |
| 598 | |
| 599 | def expn(self, address): |
| 600 | """SMTP 'expn' command -- expands a mailing list.""" |
| 601 | self.putcmd("expn", _addr_only(address)) |
| 602 | return self.getreply() |
| 603 | |
| 604 | # some useful methods |
| 605 |