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