Lines Matching refs:command
217 $greeting = $this->command("", 220);
231 $this->command("QUIT");
261 $this->setConnectionExtensions($this->command("EHLO " . $this->domain, 250));
262 else $this->command("HELO " . $this->domain, 250);
288 public function command($command, $code=null) argument
292 if ($command !== "")
294 $command_event = new Swift_Events_CommandEvent($command, $code);
295 $command = null; //For memory reasons
309 if ($command !== "" && $command_event->getCode() !== null)
319 $this->command("RSET", 250);
373 $this->command("MAIL FROM: " . $message->getReturnPath(true), 250);
386 $this->command("RCPT TO: " . $address->build(true), 250);
401 $this->command("RCPT TO: " . $address->build(true), 250);
420 $this->command("DATA", 354);
424 $this->command($bytes, -1);
427 $this->command("\r\n.", 250);
442 $this->command("MAIL FROM: " . $message->getReturnPath(true), 250);
443 $this->command("RCPT TO: " . $address->build(true), 250);
444 $this->command("DATA", 354);
447 $this->command($bytes, -1);
449 $this->command("\r\n.", 250);