ttrssmailer: include phpmailer's smtp class
This commit is contained in:
parent
832aa24943
commit
eee818c46a
|
@ -7,6 +7,7 @@
|
|||
*
|
||||
*/
|
||||
require_once 'lib/phpmailer/class.phpmailer.php';
|
||||
require_once 'lib/phpmailer/class.smtp.php';
|
||||
require_once "config.php";
|
||||
|
||||
class ttrssMailer extends PHPMailer {
|
||||
|
@ -41,8 +42,8 @@ class ttrssMailer extends PHPMailer {
|
|||
$this->Username = SMTP_LOGIN;
|
||||
$this->Password = SMTP_PASSWORD;
|
||||
}
|
||||
if(SMTP_SECURE)
|
||||
$this->SMTPSecure = SMTP_SECURE;
|
||||
if(SMTP_SECURE)
|
||||
$this->SMTPSecure = SMTP_SECURE;
|
||||
}
|
||||
/* @brief a simple mail function to send email using the defaults
|
||||
* This will send an HTML email using the configured defaults
|
||||
|
|
Loading…
Reference in New Issue