address = (string) $address; $this->name = (string) $name; } /** * Format an email to be ready for header (e.g. `Recipient Name ` or `user@email.com`) * * @return string */ public function format() { if ( ! empty( $this->name ) ) { return sprintf( '%s <%s>', $this->name, $this->address ); } return sprintf( '%s', $this->address ); } }