PK œqhYî¶J‚ßF ßF ) nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/
Dir : /home/trave494/v1world.us/wp-content/plugins/wp-mail-smtp/src/Providers/SMTP/ |
Server: Linux ngx353.inmotionhosting.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64 IP: 209.182.202.254 |
Dir : //home/trave494/v1world.us/wp-content/plugins/wp-mail-smtp/src/Providers/SMTP/Mailer.php |
<?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->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; } }