to = $to; return $this; } public function subject($subject) { $this->subject = $subject; return $this; } public function body($body) { $this->message = $body; return $this; } public function from($from) { $this->headers .= "From: ".$from."\r\n"; return $this; } }