🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-06-19 14:24:19 | PHP 8.1.34
📂
/ (Root)
/
home
/
therahul
/
thedasstores.com
/
wp-content
/
plugins
/
wp-mail-smtp
/
src
/
Providers
/
SMTP
📍 /home/therahul/thedasstores.com/wp-content/plugins/wp-mail-smtp/src/Providers/SMTP
🔄 Refresh
✏️
Editing: Mailer.php
Writable
<?php namespace WPMailSMTP\Providers\SMTP; use WPMailSMTP\Providers\MailerAbstract; /** * Class Mailer inherits everything from parent abstract class. * This file is required for a proper work of Loader and \ReflectionClass. * * @package WPMailSMTP\Providers\SMTP */ class Mailer extends MailerAbstract { /** * @inheritdoc */ public function is_mailer_complete() { $options = $this->connection_options->get_group( $this->mailer ); // Host and Port are the only really required options. if ( ! empty( $options['host'] ) && ! empty( $options['port'] ) ) { return true; } return false; } }
💾 Save Changes
❌ Cancel