textdomain = $textdomain; $this->messageKey = $messageKey; } /** * Retrieves the message body. * * @return string The message body. */ public function body() { $message = array(); $message[] = MessageFormatter::strong( $this->title() ) . '
'; $message[] = MessageFormatter::paragraph( Host::message( $this->messageKey ) ); return \implode( "\n", $message ); } /** * Renders the message title. * * @return string The message title. */ public function title() { /* translators: 1: name. */ return \sprintf( \__( 'A message from %1$s', $this->textdomain ), Host::name() ); } }