SMTP 'noop' command -- doesn't do anything :>
(self)
| 521 | pass |
| 522 | |
| 523 | def noop(self): |
| 524 | """SMTP 'noop' command -- doesn't do anything :>""" |
| 525 | return self.docmd("noop") |
| 526 | |
| 527 | def mail(self, sender, options=()): |
| 528 | """SMTP 'mail' command -- begins mail xfer session. |