12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- <?php
-
-
-
-
-
- interface Swift_Transport_EsmtpHandler
- {
-
-
-
- public function getHandledKeyword();
-
-
-
- public function setKeywordParams(array $parameters);
-
-
-
- public function afterEhlo(Swift_Transport_SmtpAgent $agent);
-
-
-
- public function getMailParams();
-
-
-
- public function getRcptParams();
-
-
-
- public function onCommand(Swift_Transport_SmtpAgent $agent,
- $command, $codes = array(), &$failedRecipients = null, &$stop = false);
-
-
-
- public function getPriorityOver($esmtpKeyword);
-
-
-
- public function exposeMixinMethods();
-
-
-
- public function resetState();
-
- }
|