/
home
/
suroeste
/
public_html
/
wp-content
/
plugins
/
wp-mail-smtp
/
src
/
Providers
/
SMTP
/
/home/suroeste/public_html/wp-content/plugins/wp-mail-smtp/src/Providers/SMTP
mkdir
upload
Name
Size
Mode
Actions
Mailer.php
627
0644
edit
dl
rm
Options.php
1478
0644
edit
dl
rm
Edit:
/home/suroeste/public_html/wp-content/plugins/wp-mail-smtp/src/Providers/SMTP/Mailer.php
(627B)
<?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
cmd:
run