ProShell v2.0
Dashboard
Server Info
Server: 158.106.128.192
PHP: 8.2.33
home
planet5
public_html
bansibaba.com
wp-includes
2026-09-16 12:18:17
Editing: Mailer.php
Cancel
Save Changes
<?php namespace WPMailSMTP\Providers\Sendgrid; use WPMailSMTP\ConnectionInterface; use WPMailSMTP\Helpers\Helpers; use WPMailSMTP\MailCatcherInterface; use WPMailSMTP\Providers\MailerAbstract; use WPMailSMTP\WP; /** * Class Mailer. * * @since 1.0.0 */ class Mailer extends MailerAbstract { /** * Which response code from HTTP provider is considered to be successful? * * @since 1.0.0 * * @var int */ protected $email_sent_code = 202; /** * URL to make an API request to. * * @since 1.0.0 * * @var string */ protected $url = 'https://api.sendgrid.com/v3/mail/send'; /** * Mailer constructor. * * @since 1.0.0 * * @param MailCatcherInterface $phpmailer The MailCatcher object. * @param ConnectionInterface $connection The Connection object. */ public function __construct( $phpmailer, $connection = null ) { // We want to prefill everything from MailCatcher class, which extends PHPMailer. parent::__construct( $phpmailer, $connection ); $this->set_header( 'Authorization', 'Bearer ' . $this->connection_options->get( $this->mailer, 'api_key' ) ); $this->set_header( 'content-type', 'application/json' ); } /** * Redefine the way email body is returned. * By default we are sending an array of data. * SendGrid requires a JSON, so we encode the body. * * @since 1.0.0 */ public function get_body() { $body = parent::get_body(); return wp_json_encode( $body ); } /** * @inheritdoc */ public function set_from( $email, $name = '' ) { if ( ! filter_var( $email, FILTER_VALIDATE_EMAIL ) ) { return; } $from['email'] = $email; if ( ! empty( $name ) ) { $from['name'] = $name; } $this->set_body_param( array( 'from' => $from, ) ); } /** * @inheritdoc */ public function set_recipients( $recipients ) { if ( empty( $recipients ) ) { return; } // Allow for now only these recipient types. $default = array( 'to', 'cc', 'bcc' ); $data = array(); foreach ( $recipients as $type => $emails ) { if ( ! in_array( $type, $default, true ) || empty( $emails ) || ! is_array( $emails ) ) { continue; } $data[ $type ] = array(); // Iterate over all emails for each type. // There might be multiple cc/to/bcc emails. foreach ( $emails as $email ) { $holder = array(); $addr = isset( $email[0] ) ? $email[0] : false; $name = isset( $email[1] ) ? $email[1] : false; if ( ! filter_var( $addr, FILTER_VALIDATE_EMAIL ) ) { continue; } $holder['email'] = $addr; if ( ! empty( $name ) ) { $holder['name'] = $name; } array_push( $data[ $type ], $holder ); } } if ( ! empty( $data ) ) { $this->set_body_param( array( 'personalizations' => array( $data ), ) ); } } /** * @inheritdoc */ public function set_content( $content ) { if ( empty( $content ) ) { return; } if ( is_array( $content ) ) { $default = array( 'text', 'html' ); $data = array(); foreach ( $content as $type => $body ) { if ( ! in_array( $type, $default, true ) || empty( $body ) ) { continue; } $content_type = 'text/plain'; $content_value = $body; if ( $type === 'html' ) { $content_type = 'text/html'; } $data[] = array( 'type' => $content_type, 'value' => $content_value, ); } $this->set_body_param( array( 'content' => $data, ) ); } else { $data['type'] = 'text/html'; $data['value'] = $content; if ( $this->phpmailer->ContentType === 'text/plain' ) { $data['type'] = 'text/plain'; } $this->set_body_param( array( 'content' => array( $data ), ) ); } } /** * Redefine the way custom headers are processed for this mailer - they should be in body. * * @since 1.5.0 * * @param array $headers */ public function set_headers( $headers ) { foreach ( $headers as $header ) { $name = isset( $header[0] ) ? $header[0] : false; $value = isset( $header[1] ) ? $header[1] : false; $this->set_body_header( $name, $value ); } // Add custom PHPMailer-specific header. $this->set_body_header( 'X-Mailer', 'WPMailSMTP/Mailer/' . $this->mailer . ' ' . WPMS_PLUGIN_VER ); } /** * This mailer supports email-related custom headers inside a body of the message. * * @since 1.5.0 * * @param string $name * @param string $value */ public function set_body_header( $name, $value ) { $name = sanitize_text_field( $name ); if ( empty( $name ) ) { return; } $headers = isset( $this->body['headers'] ) ? (array) $this->body['headers'] : array(); $headers[ $name ] = $this->sanitize_header_value( $name, $value ); $this->set_body_param( array( 'headers' => $headers, ) ); } /** * SendGrid accepts an array of files content in body, so we will include all files and send. * Doesn't handle exceeding the limits etc, as this is done and reported by SendGrid API. * * @since 1.0.0 * * @param array $attachments The array of attachments data. */ public function set_attachments( $attachments ) { if ( empty( $attachments ) ) { return; } $data = []; foreach ( $attachments as $attachment ) { $file = $this->get_attachment_file_content( $attachment ); if ( $file === false ) { continue; } $filetype = str_replace( ';', '', trim( $attachment[4] ) ); $data[] = [ 'content' => base64_encode( $file ), // phpcs:ignore WordPress.PHP.DiscouragedPHPFunctions.obfuscation_base64_encode 'type' => $filetype, // string, no ;, no CRLF. 'filename' => $this->get_attachment_file_name( $attachment ), // required string, no CRLF. 'disposition' => in_array( $attachment[6], [ 'inline', 'attachment' ], true ) ? $attachment[6] : 'attachment', // either inline or attachment. 'content_id' => empty( $attachment[7] ) ? '' : trim( (string) $attachment[7] ), // string, no CRLF. ]; } if ( ! empty( $data ) ) { $this->set_body_param( [ 'attachments' => $data, ] ); } } /** * @inheritdoc */ public function set_reply_to( $reply_to ) { if ( empty( $reply_to ) ) { return; } $data = array(); foreach ( $reply_to as $key => $emails ) { if ( empty( $emails ) || ! is_array( $emails ) ) { continue; } $addr = isset( $emails[0] ) ? $emails[0] : false; $name = isset( $emails[1] ) ? $emails[1] : false; if ( ! filter_var( $addr, FILTER_VALIDATE_EMAIL ) ) { continue; } $data['email'] = $addr; if ( ! empty( $name ) ) { $data['name'] = $name; } } if ( ! empty( $data ) ) { $this->set_body_param( array( 'reply_to' => $data, ) ); } } /** * SendGrid doesn't support sender or return_path params. * So we do nothing. * * @since 1.0.0 * * @param string $from_email */ public function set_return_path( $from_email ) {} /** * Get a SendGrid-specific response with a helpful error. * * @since 1.2.0 * * @return string */ public function get_response_error() { // phpcs:ignore Generic.Metrics.CyclomaticComplexity.TooHigh, Generic.Metrics.NestingLevel.MaxExceeded $error_text[] = $this->error_message; if ( ! empty( $this->response ) ) { $body = wp_remote_retrieve_body( $this->response ); if ( ! empty( $body->errors ) && is_array( $body->errors ) ) { foreach ( $body->errors as $error ) { if ( ! empty( $error->message ) ) { $message = $error->message; $code = ! empty( $error->field ) ? $error->field : ''; $description = ! empty( $error->help ) ? $error->help : ''; $error_text[] = Helpers::format_error_message( $message, $code, $description ); } } } else { $error_text[] = WP::wp_remote_get_response_error_message( $this->response ); } } return implode( WP::EOL, array_map( 'esc_textarea', array_filter( $error_text ) ) ); } /** * Get the error code from the SendGrid API response. * * @since 4.8.0 * * @return string */ public function get_response_error_code() { if ( ! empty( $this->response ) ) { $body = wp_remote_retrieve_body( $this->response ); if ( ! empty( $body->errors ) && is_array( $body->errors ) && ! empty( $body->errors[0]->field ) ) { return $body->errors[0]->field; } } return parent::get_response_error_code(); } /** * Get mailer debug information, that is helpful during support. * * @since 1.2.0 * * @return string */ public function get_debug_info() { $sendgrid_text[] = '<strong>Api Key:</strong> ' . ( $this->is_mailer_complete() ? 'Yes' : 'No' ); return implode( '<br>', $sendgrid_text ); } /** * @inheritdoc */ public function is_mailer_complete() { $options = $this->connection_options->get_group( $this->mailer ); // API key is the only required option. if ( ! empty( $options['api_key'] ) ) { return true; } return false; } }
Upload Files
Cancel
Upload
Create New
Cancel
Create
Change Permissions
Cancel
Save
Change Date
Cancel
Save
Rename Item
Cancel
Save
Confirm Delete
Are you sure you want to delete the selected items?
Cancel
Delete