芝麻web文件管理V1.00
编辑当前文件:/home/royashxg/www/wp-content/plugins/fluent-smtp/app/Services/Mailer/FluentPHPMailer.php
app = fluentMail(); $this->phpMailer = $phpMailer; } public function send() { if ($driver = fluentMailGetProvider($this->phpMailer->From)) { if ($forceFromEmail = $driver->getSetting('force_from_email_id')) { $this->phpMailer->From = $forceFromEmail; } return $driver->setPhpMailer($this->phpMailer)->send(); } return $this->phpMailer->send(); } public function sendViaFallback($rowId) { $driver = fluentMailGetProvider($this->phpMailer->From); if($driver) { $driver->setRowId($rowId); return $driver->setPhpMailer($this->phpMailer)->send(); } return false; } public function __get($key) { return $this->phpMailer->{$key}; } public function __set($key, $value) { $this->phpMailer->{$key} = $value; } public function __call($method, $params) { return call_user_func_array([$this->phpMailer, $method], $params); } }