X7ROOT File Manager
Current Path:
/home/oakwood/public_html/wp-content/plugins/wp-mail-smtp/src
home
/
oakwood
/
public_html
/
wp-content
/
plugins
/
wp-mail-smtp
/
src
/
ðŸ“
..
📄
AbstractConnection.php
(1.09 KB)
ðŸ“
Admin
ðŸ“
Compatibility
📄
Conflicts.php
(15.01 KB)
📄
Connect.php
(9.18 KB)
📄
Connection.php
(964 B)
📄
ConnectionInterface.php
(1.01 KB)
📄
ConnectionsManager.php
(765 B)
📄
Core.php
(33.45 KB)
📄
DBRepair.php
(6.29 KB)
📄
Debug.php
(3.5 KB)
📄
Geo.php
(6.76 KB)
ðŸ“
Helpers
📄
MailCatcher.php
(1.63 KB)
📄
MailCatcherInterface.php
(1.16 KB)
📄
MailCatcherTrait.php
(13.43 KB)
📄
MailCatcherV6.php
(1.47 KB)
📄
Migration.php
(12.11 KB)
📄
MigrationAbstract.php
(3.21 KB)
📄
Migrations.php
(3.59 KB)
📄
OptimizedEmailSending.php
(1.17 KB)
📄
Options.php
(46.44 KB)
📄
Processor.php
(14.06 KB)
ðŸ“
Providers
ðŸ“
Queue
ðŸ“
Reports
📄
SiteHealth.php
(12.63 KB)
ðŸ“
Tasks
📄
Upgrade.php
(1.55 KB)
📄
Uploads.php
(5.44 KB)
ðŸ“
UsageTracking
📄
WP.php
(20.08 KB)
📄
WPMailArgs.php
(4.44 KB)
📄
WPMailInitiator.php
(4.38 KB)
Editing: WPMailArgs.php
<?php namespace WPMailSMTP; /** * Class WPMailArgs. This class responsible for `wp_mail` function arguments parsing. * * Parsing algorithms copied from `wp_mail` function. * * @since 3.7.0 */ class WPMailArgs { /** * Array of the `wp_mail` function arguments. * * @since 3.7.0 * * @var array */ private $args; /** * Parsed headers. * * @since 3.7.0 * * @var array */ private $headers = null; /** * Constructor. * * @since 3.7.0 * * @param array $args { * Array of the `wp_mail` function arguments. * * @type string|string[] $to Array or comma-separated list of email addresses to send message. * @type string $subject Email subject. * @type string $message Message contents. * @type string|string[] $headers Additional headers. * @type string|string[] $attachments Paths to files to attach. * } */ public function __construct( $args ) { $this->args = $args; } /** * Get arguments. * * @since 3.7.0 * * @return array */ public function get_args() { return $this->args; } /** * Get to email. * * @since 3.7.0 * * @return string */ public function get_to_email() { return $this->get_arg( 'to' ); } /** * Get subject. * * @since 3.7.0 * * @return string */ public function get_subject() { return $this->get_arg( 'subject' ); } /** * Get message. * * @since 3.7.0 * * @return string */ public function get_message() { return $this->get_arg( 'message' ); } /** * Get from email. * * @since 3.7.0 * * @return string */ public function get_from_email() { $from = $this->get_from(); return $from['email']; } /** * Get from name. * * @since 3.7.0 * * @return string */ public function get_from_name() { $from = $this->get_from(); return $from['name']; } /** * Get parsed headers. * * @since 3.7.0 * * @return array */ public function get_headers() { // phpcs:ignore Generic.Metrics.CyclomaticComplexity.TooHigh if ( ! is_null( $this->headers ) ) { return $this->headers; } $this->headers = []; if ( ! empty( $this->args['headers'] ) ) { if ( ! is_array( $this->args['headers'] ) ) { $headers = explode( "\n", str_replace( "\r\n", "\n", $this->args['headers'] ) ); } else { $headers = $this->args['headers']; } foreach ( (array) $headers as $header ) { if ( strpos( $header, ':' ) === false ) { continue; } list( $name, $content ) = array_map( 'trim', explode( ':', trim( $header ), 2 ) ); $name = strtolower( $name ); if ( isset( $this->headers[ $name ] ) && in_array( $name, [ 'cc', 'bcc', 'reply-to' ], true ) ) { $this->headers[ $name ] .= ', ' . $content; } else { $this->headers[ $name ] = $content; } } } return $this->headers; } /** * Get particular header value. * * @since 3.7.0 * * @param string $name Header name. * * @return null|string */ public function get_header( $name ) { $name = strtolower( $name ); $headers = $this->get_headers(); return isset( $headers[ $name ] ) ? $headers[ $name ] : null; } /** * Get argument value. * * @since 3.7.0 * * @param string $key Argument key. * @param mixed $default Default value. * * @return string */ private function get_arg( $key, $default = '' ) { return isset( $this->args[ $key ] ) ? $this->args[ $key ] : $default; } /** * Get from address. * * @since 3.7.0 * * @return array */ private function get_from() { $from_email = ''; $from_name = ''; $value = $this->get_header( 'from' ); $value = is_null( $value ) ? '' : $value; $bracket_pos = strpos( $value, '<' ); if ( $bracket_pos !== false ) { // Text before the bracketed email is the "From" name. if ( $bracket_pos > 0 ) { $from_name = substr( $value, 0, $bracket_pos - 1 ); $from_name = str_replace( '"', '', $from_name ); $from_name = trim( $from_name ); } $from_email = substr( $value, $bracket_pos + 1 ); $from_email = str_replace( '>', '', $from_email ); $from_email = trim( $from_email ); // Avoid setting an empty $from_email. } elseif ( trim( $value ) !== '' ) { $from_email = trim( $value ); } return [ 'email' => $from_email, 'name' => $from_name, ]; } /** * Get attachments. * * @since 4.0.0 * * @return array */ public function get_attachments() { return $this->get_arg( 'attachments', [] ); } }
Upload File
Create Folder