[ SYSTEM ]: Linux wordpress 6.1.0-41-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.158-1 (2025-11-09) x86_64
[ SERVER ]: Apache/2.4.66 (Debian) | PHP: 8.2.30
[ USER ]: www-data | IP: 172.19.30.54
GEFORCE FILE MANAGER
/
var
/
www
/
html
/
wordpress
/
wp-content
/
plugins
/
elementor-pro
/
modules
/
notes
/
notifications
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📁 views
SET
[ DEL ]
📄 user-mentioned-notification.php
1,154 B
SET
[ EDIT ]
|
[ DEL ]
📄 user-replied-notification.php
1,154 B
SET
[ EDIT ]
|
[ DEL ]
📄 user-resolved-notification.php
1,149 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: user-resolved-notification.php
<?php namespace ElementorPro\Modules\Notes\Notifications; use ElementorPro\Core\Integrations\Actions\Email\Email_Message; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } class User_Resolved_Notification extends Base_Notes_Notification { protected function create_email_message( $notifiable ) { $subject = sprintf( /* translators: 1: Note ID, 2: Site name, 3: Page name. */ esc_html__( 'Note #%1$s resolved on %2$s - %3$s', 'elementor-pro' ), $this->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 resolved a note 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(), ] ); } }