e107_handlers/mail.php
Method sendemail
has 12 arguments (exceeds 7 allowed). Consider refactoring. Open
Open
function sendemail($send_to, $subject, $message, $to_name='', $send_from='', $from_name='', $attachments='', $Cc='', $Bcc='', $returnpath='', $returnreceipt=false,$inline ='')
Reference to undeclared class \PHPMailer\PHPMailer\PHPMailer
Open
Open
parent::__construct(false); // Parent constructor - no exceptions for now
- Exclude checks
Reference to undeclared property \e107Email->Port
Open
Open
$this->Port = ($smtpPort != 587) ? $smtpPort : 465;
- Exclude checks
Reference to undeclared property \e107Email->Password
Open
Open
$this->Password = $overrides['smtp_password'];
- Exclude checks
Reference to undeclared property \e107Email->From
Open
Open
$this->DKIM_identifier = $this->From;
- Exclude checks
Assigning 0
to property but \e107Email->add_email
is string
Open
Open
$this->add_email = 0;
- Exclude checks
Reference to undeclared property \e107Email->Subject
Open
Open
fwrite($this->logHandle,' Mailer opened by '.defset('USERNAME')." - ID: {$this->MessageID}. Subject: {$this->Subject} Log action: {$this->logEnable}\r\n");
- Exclude checks
Reference to undeclared property \e107Email->Subject
Open
Open
fwrite($this->logHandle, 'Subject: '.$this->Subject."\r\n");
- Exclude checks
Call to undeclared method \e107Email::addAttachment
Open
Open
$this->addAttachment($attach, $tempName,'base64',$this->_mime_types($ext));
- Exclude checks
Call to undeclared method \e107Email::addCustomHeader
Open
Open
$this->addCustomHeader($eh);
- Exclude checks
Reference to undeclared property \e107Email->FromName
Open
Open
$this->FromName = $tp->toHTML(vartrue($pref['replyto_name'],$overrides['siteadmin']),'','RAWTEXT');
- Exclude checks
Assigning 0
to property but \e107Email->logEnable
is string
Open
Open
$this->logEnable = 0;
- Exclude checks
Reference to undeclared property \e107Email->Sender
Open
Open
fwrite($this->logHandle, 'Sender: '.$this->Sender."\r\n");
- Exclude checks
Reference to undeclared property \e107Email->Mailer
Open
Open
if($this->Mailer == 'mail')
- Exclude checks
Reference to undeclared property \e107Email->Username
Open
Open
if (!empty($eml['smtp_username'])) { $this->Username = $eml['smtp_username']; }
- Exclude checks
Call to undeclared method \e107Email::addCustomHeader
Open
Open
$this->addCustomHeader($eml['extra_header']);
- Exclude checks
Class extends undeclared class \PHPMailer\PHPMailer\PHPMailer
Open
Open
class e107Email extends PHPMailer
- Exclude checks
Reference to undeclared property \e107Email->CharSet
Open
Open
$this->CharSet = 'utf-8';
- Exclude checks
Call to undeclared method \e107Email::setLanguage
Open
Open
$this->setLanguage(CORE_LC);
- Exclude checks
Assigning int
to property but \e107Email->logEnable
is string
Open
Open
$this->logEnable = (int) $level;
- Exclude checks
Reference to undeclared property \e107Email->Mailer
Open
Open
if($this->Mailer == 'mail')
- Exclude checks
Reference to undeclared property \e107Email->Sender
Open
Open
$this->Sender = $our_sender.'+'.str_replace($send_to,'@','=').'@'.$our_domain;
- Exclude checks
Reference to undeclared property \e107Email->Mailer
Open
Open
$this->Mailer = 'mail';
- Exclude checks
Reference to undeclared property \e107Email->From
Open
Open
$this->From = $tp->toHTML(vartrue($pref['replyto_email'],$overrides['siteadminemail']),'','RAWTEXT');
- Exclude checks
Reference to undeclared property \e107Email->WordWrap
Open
Open
$this->WordWrap = 76; // Set a sensible default
- Exclude checks
Call to method getMessage
from undeclared class \PHPMailer\PHPMailer\Exception
(Did you mean class \Exception) Open
Open
$this->logLine($e->getMessage());
- Exclude checks
Reference to undeclared property \e107Email->DKIM_passphrase
Open
Open
$this->DKIM_passphrase = ''; //key is not encrypted
- Exclude checks
Call to undeclared method \e107Email::addEmbeddedImage
Open
Open
$this->addEmbeddedImage($inline_img, md5($inline_img), basename($inline_img),'base64',$this->_mime_types($ext));
- Exclude checks
Call to undeclared method \e107Email::addReplyTo
Open
Open
$this->addReplyTo($adr, $to_name);
- Exclude checks
Call to method getMessage
from undeclared class \PHPMailer\PHPMailer\Exception
(Did you mean class \Exception) Open
Open
$this->logLine($e->getMessage());
- Exclude checks
Call to undeclared method \e107Email::addCustomHeader
Open
Open
$this->addCustomHeader('Cc: '.$adr);
- Exclude checks
Reference to undeclared property \e107Email->Subject
Open
Open
if (vartrue($eml['subject'])) $this->Subject = $tp->parseTemplate($eml['subject'], true, varset($eml['shortcodes'],null));
- Exclude checks
Reference to undeclared property \e107Email->WordWrap
Open
Open
if (!empty($eml['wordwrap'])) { $this->WordWrap = $eml['wordwrap']; }
- Exclude checks
Reference to undeclared property \e107Email->FromName
Open
Open
if (!empty($eml['sender_name'])) { $this->FromName = $eml['sender_name']; }
- Exclude checks
Reference to undeclared property \e107Email->Debugoutput
Open
Open
$this->Debugoutput = 'handlePHPMailerDebug';
- Exclude checks
Returning type int
but sendEmail()
is declared to return bool|string
Open
Open
return $error;
- Exclude checks
Reference to undeclared property \e107Email->Helo
Open
Open
if (vartrue($smtp_options['helo'])) $this->Helo = $smtp_options['helo'];
- Exclude checks
Reference to undeclared property \e107Email->SMTPSecure
Open
Open
$this->SMTPSecure = 'tls';
- Exclude checks
Reference to undeclared property \e107Email->SMTPSecure
Open
Open
$this->SMTPSecure = 'ssl';
- Exclude checks
Reference to undeclared property \e107Email->SMTPKeepAlive
Open
Open
$this->SMTPKeepAlive = varset($smtp_options['keepalive'],false); // ***** Control this
- Exclude checks
Reference to undeclared property \e107Email->Sendmail
Open
Open
$this->Sendmail = ($overrides['sendmail']) ? $overrides['sendmail'] : '/usr/sbin/sendmail -t -i -r '.vartrue($pref['replyto_email'],$overrides['siteadminemail']);
- Exclude checks
Reference to undeclared property \e107Email->MessageID
Open
Open
fwrite($this->logHandle,' Mailer opened by '.defset('USERNAME')." - ID: {$this->MessageID}. Subject: {$this->Subject} Log action: {$this->logEnable}\r\n");
- Exclude checks
Reference to undeclared property \e107Email->From
Open
Open
fwrite($this->logHandle, 'From: '.$this->From.' ('.$this->FromName.")\r\n");
- Exclude checks
Call to method getMessage
from undeclared class \PHPMailer\PHPMailer\Exception
(Did you mean class \Exception) Open
Open
$this->logLine($e->getMessage());
- Exclude checks
Reference to undeclared property \e107Email->Body
Open
Open
$text = $this->Body;
- Exclude checks
Found a return statement with a value in the implementation of the magic method \e107Email::__construct,
expected void return type Open
Open
public function __construct($overrides = false)
- Exclude checks
Reference to undeclared property \e107Email->Mailer
Open
Open
$this->Mailer = 'smtp';
- Exclude checks
Call to undeclared method \e107Email::isSMTP
Open
Open
$this->isSMTP(); // Enable SMTP functions
- Exclude checks
Reference to undeclared property \e107Email->Port
Open
Open
$this->Port = ($smtpPort != 465) ? $smtpPort : 25; // Can also use port 587, and maybe even 25
- Exclude checks
Catching undeclared class \PHPMailer\PHPMailer\Exception
(Did you mean class \Exception) Open
Open
catch (Exception $e)
- Exclude checks
Call to undeclared method \e107Email::addCC
Open
Open
$this->addCC($adr, $to_name);
- Exclude checks
Call to method getMessage
from undeclared class \PHPMailer\PHPMailer\Exception
(Did you mean class \Exception) Open
Open
$this->logLine($e->getMessage());
- Exclude checks
Catching undeclared class \PHPMailer\PHPMailer\Exception
(Did you mean class \Exception) Open
Open
catch (Exception $e)
- Exclude checks
Catching undeclared class \PHPMailer\PHPMailer\Exception
(Did you mean class \Exception) Open
Open
catch (Exception $e)
- Exclude checks
Reference to undeclared property \e107Email->Subject
Open
Open
$this->Subject = $tp->parseTemplate(varset($tmpl['subject'],'{SUBJECT}'), true, varset($eml['shortcodes'],null));
- Exclude checks
When fetching an array index from a value of type array<int>|array{},</int>
found an array index of type 'textonly',
but expected the index to be of type int
Open
Open
switch (varset($this->general_opts['textonly'],'off'))
- Exclude checks
Reference to undeclared property \e107Email->SingleTo
Open
Open
if (!empty($eml['split'])) { $this->SingleTo = ($eml['split'] != false); }
- Exclude checks
Argument #1 of this call to \str_replace
is typically a literal or constant but isn't, but argument #3 (which is typically a variable) is a literal or constant. The arguments may be in the wrong order. Open
Open
$this->Sender = $our_sender.'+'.str_replace($send_to,'@','=').'@'.$our_domain;
- Exclude checks
Argument 3 (limit)
is ''
but \explode()
takes int
Open
Open
if (vartrue($pref['mail_options'])) $this->general_opts = explode(',',$pref['mail_options'],'');
- Exclude checks
Argument 2 (parseBB)
is ''
but \e_parse::toHTML()
takes bool|false
defined at /code/e107_handlers/e_parse_class.php:1532
Open
Open
$this->FromName = $tp->toHTML(vartrue($pref['replyto_name'],$overrides['siteadmin']),'','RAWTEXT');
- Exclude checks
Argument 2 (parseBB)
is ''
but \e_parse::toHTML()
takes bool|false
defined at /code/e107_handlers/e_parse_class.php:1532
Open
Open
$this->From = $tp->toHTML(vartrue($pref['replyto_email'],$overrides['siteadminemail']),'','RAWTEXT');
- Exclude checks
Reference to undeclared property \e107Email->From
Open
Open
$this->Sender = (!empty($pref['mail_bounce_email'])) ? $pref['mail_bounce_email'] : $this->From;
- Exclude checks
Reference to undeclared property \e107Email->Sender
Open
Open
$this->Sender = (!empty($pref['mail_bounce_email'])) ? $pref['mail_bounce_email'] : $this->From;
- Exclude checks
Reference to undeclared property \e107Email->DKIM_domain
Open
Open
$this->DKIM_domain = e_DOMAIN; // 'example.com';
- Exclude checks
Call to undeclared method \e107Email::addAddress
Open
Open
$this->addAddress($adr, $to_name);
- Exclude checks
Catching undeclared class \PHPMailer\PHPMailer\Exception
(Did you mean class \Exception) Open
Open
catch (Exception $e)
- Exclude checks
Reference to undeclared property \e107Email->ConfirmReadingTo
Open
Open
if (!empty($eml['returnreceipt'])) { $this->ConfirmReadingTo = $eml['returnreceipt']; }
- Exclude checks
Call to method authorise
from undeclared class \PHPMailer\PHPMailer\POP3
Open
Open
$pop->authorise($overrides['smtp_server'], 110, 30, $overrides['smtp_username'], $overrides['smtp_password'], 1);
- Exclude checks
Assigning int
to property but \e107Email->add_email
is string
Open
Open
$this->add_email = (int) $emailDetails;
- Exclude checks
Call to undeclared method \e107Email::_mime_types
Open
Open
$this->addAttachment($attach, $tempName,'base64',$this->_mime_types($ext));
- Exclude checks
When fetching an array index from a value of type array<string>|array{},</string>
found an array index of type float|int,
but expected the index to be of type string
Open
Open
$size = isset($mediaParms[$nk]) ? "?w=".$mediaParms[$nk]['w'] : '';
- Exclude checks
Assigning false
to property but \e107Email->logHandle
is resource
Open
Open
private $logHandle = false; // Save handle of log file if opened
- Exclude checks
Reference to undeclared property \e107Email->Host
Open
Open
$this->Host = $overrides['smtp_server'];
- Exclude checks
Reference to undeclared property \e107Email->DKIM_private
Open
Open
$this->DKIM_private = $privatekeyfile;
- Exclude checks
Reference to undeclared property \e107Email->DKIM_identifier
Open
Open
$this->DKIM_identifier = $this->From;
- Exclude checks
Reference to undeclared property \e107Email->Body
Open
Open
$this->Body = $text;
- Exclude checks
Returning type void
but attach()
is declared to return null
Open
Open
if (!$attachments) return;
- Exclude checks
Call to undeclared method \e107Email::_mime_types
Open
Open
$this->addEmbeddedImage($inline_img, md5($inline_img), basename($inline_img),'base64',$this->_mime_types($ext));
- Exclude checks
Reference to undeclared property \e107Email->Subject
Open
Open
if (vartrue($eml['subject'])) $this->Subject = $tp->parseTemplate($eml['subject'], true, varset($eml['shortcodes'],null));
- Exclude checks
Reference to undeclared property \e107Email->Password
Open
Open
if (!empty($eml['smtp_password'])) { $this->Password = $eml['smtp_password']; }
- Exclude checks
Reference to undeclared property \e107Email->SMTPAuth
Open
Open
$this->SMTPAuth = (!isset($smtp_options['pop3auth']));
- Exclude checks
Reference to undeclared property \e107Email->DKIM_selector
Open
Open
$this->DKIM_selector = 'phpmailer';
- Exclude checks
Call to undeclared method \e107Email::addCustomHeader
Open
Open
$this->addCustomHeader('Bcc: '.$adr);
- Exclude checks
Reference to undeclared property \e107Email->From
Open
Open
if (!empty($eml['sender_email'])) { $this->From = $eml['sender_email']; }
- Exclude checks
Call to undeclared method \e107Email::addCustomHeader
Open
Open
if (!empty($eml['e107_header'])) { $this->addCustomHeader($identifier.": {$eml['e107_header']}"); }
- Exclude checks
Reference to undeclared property \e107Email->Hostname
Open
Open
list(,$this->Hostname) = explode('=',$v);
- Exclude checks
Call to method __construct
from undeclared class \PHPMailer\PHPMailer\POP3
Open
Open
$pop = new POP3();
- Exclude checks
Reference to undeclared property \e107Email->CharSet
Open
Open
$message = htmlspecialchars($message,ENT_QUOTES,$this->CharSet);
- Exclude checks
Reference to undeclared property \e107Email->Subject
Open
Open
var_dump($this->Subject);
- Exclude checks
Call to undeclared method \e107Email::setFrom
Open
Open
$this->setFrom($eml['sender_email'], $eml['sender_name']);
- Exclude checks
Reference to undeclared property \e107Email->Sender
Open
Open
$this->Sender = $eml['bouncepath']; // Bounce path
- Exclude checks
Reference to undeclared property \e107Email->Mailer
Open
Open
$this->Mailer = 'sendmail';
- Exclude checks
Call to method getMessage
from undeclared class \PHPMailer\PHPMailer\Exception
(Did you mean class \Exception) Open
Open
$this->logLine($e->getMessage());
- Exclude checks
Reference to undeclared property \e107Email->Subject
Open
Open
var_dump($this->Subject);
- Exclude checks
Reference to undeclared property \e107Email->Subject
Open
Open
$this->Subject = str_replace("'", "'", $this->Subject);
- Exclude checks
Reference to undeclared property \e107Email->Priority
Open
Open
if (!empty($eml['priority'])) { $this->Priority = $eml['priority']; }
- Exclude checks
Reference to undeclared property \e107Email->Username
Open
Open
$this->Username = $overrides['smtp_username'];
- Exclude checks
Reference to undeclared property \e107Email->Body
Open
Open
fwrite($this->logHandle, 'Body: '.$this->Body."\r\n");
- Exclude checks
Catching undeclared class \PHPMailer\PHPMailer\Exception
(Did you mean class \Exception) Open
Open
catch (Exception $e)
- Exclude checks
Reference to undeclared property \e107Email->AltBody
Open
Open
$this->AltBody = ''; // Single part email
- Exclude checks
Catching undeclared class \PHPMailer\PHPMailer\Exception
(Did you mean class \Exception) Open
Open
catch (Exception $e)
- Exclude checks
Invalid offset "sitetheme"
of array type array{}
Open
Open
$eml['shortcodes']['THEME'] = ($this->previewMode == true) ? e_THEME_ABS.$this->pref['sitetheme'].'/' : e_THEME.$this->pref['sitetheme'].'/'; // Always use front-end theme path.
- Exclude checks
Suspicious type null
of a variable or expression used to build a string. (Expected type to be able to cast to a string) Open
Open
$eml['shortcodes']['THEME'] = ($this->previewMode == true) ? e_THEME_ABS.$this->pref['sitetheme'].'/' : e_THEME.$this->pref['sitetheme'].'/'; // Always use front-end theme path.
- Exclude checks
Reference to undeclared property \e107Email->SMTPDebug
Open
Open
if (isset($eml['SMTPDebug'])) { $this->SMTPDebug = $eml['SMTPDebug']; } // 'false' is a valid value!
- Exclude checks
Call to undeclared method \e107Email::isError
Open
Open
if($this->isError())
- Exclude checks
Reference to undeclared property \e107Email->Hostname
Open
Open
if ($this->debug) echo "Host name set to: {$this->Hostname}<br />";
- Exclude checks
Reference to undeclared property \e107Email->FromName
Open
Open
fwrite($this->logHandle, 'From: '.$this->From.' ('.$this->FromName.")\r\n");
- Exclude checks
Call to method getMessage
from undeclared class \PHPMailer\PHPMailer\Exception
(Did you mean class \Exception) Open
Open
$this->logLine($e->getMessage());
- Exclude checks
Call to undeclared method \e107Email::addBCC
Open
Open
$this->addBCC($adr, $to_name);
- Exclude checks
Returning type int
but preview()
is declared to return string
Open
Open
return $error;
- Exclude checks
Reference to undeclared property \e107Email->MessageID
Open
Open
$this->logLine("Send to {$to_name} at {$send_to} Mail-ID={$this->MessageID} - ".($result ? 'Success' : 'Fail'));
- Exclude checks
Static call to undeclared method \e107Email::_mime_types
Open
Open
$mimeType = self::_mime_types($ext);
- Exclude checks
Call to undeclared method \e107Email::html2text
Open
Open
$this->AltBody = static::normalizeBreaks($this->html2text($textMsg, $advanced));
- Exclude checks
Static call to undeclared method \e107Email::normalizeBreaks
Open
Open
$this->AltBody = static::normalizeBreaks($this->html2text($textMsg, $advanced));
- Exclude checks
Reference to undeclared property \e107Email->AltBody
Open
Open
$this->AltBody = 'To view this email message, enable HTML!' . "\n\n";
- Exclude checks
Reference to undeclared property \e107Email->ConfirmReadingTo
Open
Open
if (vartrue($returnreceipt)) $mail->ConfirmReadingTo = $returnreceipt;
- Exclude checks
Reference to undeclared property \e107Email->ErrorInfo
Open
Open
e107::getMessage()->addError($this->ErrorInfo);
- Exclude checks
Call to undeclared method \e107Email::clearCustomHeaders
Open
Open
$this->clearCustomHeaders();
- Exclude checks
Reference to undeclared property \e107Email->AltBody
Open
Open
$this->AltBody = static::normalizeBreaks($this->html2text($textMsg, $advanced));
- Exclude checks
Reference to undeclared property \e107Email->Body
Open
Open
return $this->Body;
- Exclude checks
Class extends undeclared class \PHPMailer\PHPMailer\Exception
(Did you mean class \Exception) Open
Open
class e107Exception extends Exception
- Exclude checks
Call to undeclared method \e107Exception::getTraceAsString
Open
Open
$this->getTraceAsString(),
- Exclude checks
Reference to undeclared property \e107Email->Subject
Open
Open
echo "<h2>Subject: ".$this->Subject."</h2>";
- Exclude checks
Reference to undeclared property \e107Email->ErrorInfo
Open
Open
e107::getLog()->addEvent(3,debug_backtrace(),"MAIL","Send Failed",$this->ErrorInfo,false,LOG_TO_ROLLING);
- Exclude checks
Call to undeclared method \e107Email::smtpClose
Open
Open
$this->smtpClose();
- Exclude checks
Call to undeclared method \e107Email::addCustomHeader
Open
Open
if (vartrue($mailheader_e107id)) $mail->addCustomHeader($identifier.": {$mailheader_e107id}");
- Exclude checks
Call to undeclared method \e107Email::setFrom
Open
Open
$mail->setFrom($send_from, $from_name); // These have already been defaulted to sitewide options, so no need to set again if blank
- Exclude checks
Reference to undeclared property \e107Email->ErrorInfo
Open
Open
e107::getMessage()->addInfo($this->ErrorInfo);
- Exclude checks
Reference to undeclared property \e107Email->Mailer
Open
Open
if (!$bulkmail && !$this->SMTPKeepAlive && ($this->Mailer == 'smtp')) $this->smtpClose();
- Exclude checks
Call to undeclared method \e107Email::smtpClose
Open
Open
if (!$bulkmail && !$this->SMTPKeepAlive && ($this->Mailer == 'smtp')) $this->smtpClose();
- Exclude checks
Reference to undeclared property \e107Email->Mailer
Open
Open
if ($this->SMTPKeepAlive && ($this->Mailer == 'smtp') && ($this->SendCount > 0))
- Exclude checks
Reference to undeclared property \e107Email->Body
Open
Open
$this->Body = static::normalizeBreaks($message);
- Exclude checks
Catching undeclared class \PHPMailer\PHPMailer\Exception
(Did you mean class \Exception) Open
Open
catch (Exception $e)
- Exclude checks
Call to undeclared method \e107Email::clearAddresses
Open
Open
$this->clearAddresses(); // In case we send another email
- Exclude checks
Reference to undeclared property \e107Email->ErrorInfo
Open
Open
return $this->ErrorInfo;
- Exclude checks
Reference to undeclared property \e107Email->SMTPKeepAlive
Open
Open
if ($this->SMTPKeepAlive && ($this->Mailer == 'smtp') && ($this->SendCount > 0))
- Exclude checks
Catching undeclared class \PHPMailer\PHPMailer\Exception
(Did you mean class \Exception) Open
Open
catch (Exception $e)
- Exclude checks
Reference to undeclared property \e107Email->ErrorInfo
Open
Open
$this->logLine('Error info: '.$this->ErrorInfo);
- Exclude checks
Call to undeclared method \e107Exception::getFile
Open
Open
$this->getFile().'|@'.$this->getLine(),
- Exclude checks
Call to undeclared method \e107Exception::getCode
Open
Open
$this->getCode().':'.$this->getMessage(),
- Exclude checks
Reference to undeclared property \e107Email->SMTPKeepAlive
Open
Open
if ($this->SMTPKeepAlive && ($this->Mailer == 'smtp')) $this->smtpClose();
- Exclude checks
Static call to undeclared method \e107Email::normalizeBreaks
Open
Open
$this->Body = static::normalizeBreaks($message);
- Exclude checks
Reference to undeclared class \PHPMailer\PHPMailer\Exception
(Did you mean class \Exception) Open
Open
parent::__construct($message, $code);
- Exclude checks
Call to undeclared method \e107Exception::getMessage
Open
Open
$this->getCode().':'.$this->getMessage(),
- Exclude checks
Call to method getMessage
from undeclared class \PHPMailer\PHPMailer\Exception
(Did you mean class \Exception) Open
Open
$this->logLine($e->getMessage());
- Exclude checks
Reference to undeclared property \e107Email->Subject
(Did you mean $subject) Open
Open
$mail->Subject = $subject;
- Exclude checks
Reference to undeclared property \e107Email->Sender
Open
Open
if (vartrue($returnpath)) $mail->Sender = $returnpath;
- Exclude checks
Catching undeclared class \PHPMailer\PHPMailer\Exception
(Did you mean class \Exception) Open
Open
catch (Exception $e)
- Exclude checks
Call to undeclared method \e107Email::smtpClose
Open
Open
if ($this->SMTPKeepAlive && ($this->Mailer == 'smtp')) $this->smtpClose();
- Exclude checks
Reference to undeclared property \e107Email->ErrorInfo
Open
Open
$this->logLine('Error info: '.$this->ErrorInfo);
- Exclude checks
Call to method getMessage
from undeclared class \PHPMailer\PHPMailer\Exception
(Did you mean class \Exception) Open
Open
$this->logLine($e->getMessage());
- Exclude checks
Call to undeclared method \e107Email::addEmbeddedImage
Open
Open
$this->addEmbeddedImage($basedir.$directory.$filename, md5($filename), $filename, 'base64',$mimeType);
- Exclude checks
Call to undeclared method \e107Email::isHTML
(Did you mean expr->MsgHTML()) Open
Open
$this->isHTML(true);
- Exclude checks
Call to undeclared method \e107Email::send
Open
Open
$result = $this->send(); // Actually send email
- Exclude checks
Reference to undeclared property \e107Email->SMTPKeepAlive
Open
Open
if (!$bulkmail && !$this->SMTPKeepAlive && ($this->Mailer == 'smtp')) $this->smtpClose();
- Exclude checks
Reference to undeclared property \e107Email->Mailer
Open
Open
if ($this->SMTPKeepAlive && ($this->Mailer == 'smtp')) $this->smtpClose();
- Exclude checks
Reference to undeclared property \e107Email->AltBody
Open
Open
if(empty($this->AltBody))
- Exclude checks
Call to undeclared method \e107Exception::getLine
Open
Open
$this->getFile().'|@'.$this->getLine(),
- Exclude checks