note->get_thread_id(), get_bloginfo( 'name' ), $this->note->route_title ); return ( new Email_Message() ) ->from( ...$this->get_sender() ) ->to( $notifiable->user_email, $notifiable->display_name ) ->subject( $subject ) ->view( __DIR__ . '/views/email.php', [ 'actor' => $this->actor->display_name, /* translators: 1: User display name, 2: Page name, 3: Site name. */ 'heading' => __( '%1$s mentioned you on %2$s at %3$s', 'elementor-pro' ), 'page' => $this->note->route_title, 'site_name' => get_bloginfo( 'name' ), 'note_content' => $this->note->content, 'note_url' => $this->note->get_url(), ] ); } }