2 /* @class ttrssMailer
\r
3 * @brief A TTRSS extension to the PHPMailer class
\r
4 * Configures default values through the __construct() function
\r
5 * @author Derek Murawsky
\r
6 * @version .1 (alpha)
\r
9 require_once 'lib/phpmailer/class.phpmailer.php';
\r
10 require_once "config.php";
\r
12 class ttrssMailer extends PHPMailer {
\r
14 //define all items that we want to override with defaults in PHPMailer
\r
15 public $From = SMTP_FROM_ADDRESS;
\r
16 public $FromName = SMTP_FROM_NAME;
\r
17 public $CharSet = "UTF-8";
\r
18 public $PluginDir = "lib/phpmailer/";
\r
19 public $ContentType = "text/html"; //default email type is HTML
\r
21 function __construct() {
\r
22 $this->SetLanguage("en", "lib/phpmailer/language/");
\r
25 $pair = explode(":", SMTP_SERVER, 2);
\r
26 $this->Mailer = "smtp";
\r
28 $this->Host = $pair[0];
\r
29 $this->Port = $pair[1];
\r
31 if (!$this->Port) $this->Port = 25;
\r
38 //if SMTP_LOGIN is specified, set credentials and enable auth
\r
40 $this->SMTPAuth = true;
\r
41 $this->Username = SMTP_LOGIN;
\r
42 $this->Password = SMTP_PASSWORD;
\r
45 /* @brief a simple mail function to send email using the defaults
\r
46 * This will send an HTML email using the configured defaults
\r
47 * @param $toAddress A string with the recipients email address
\r
48 * @param $toName A string with the recipients name
\r
49 * @param $subject A string with the emails subject
\r
50 * @param $body A string containing the body of the email
\r
52 public function quickMail ($toAddress, $toName, $subject, $body, $altbody=""){
\r
53 $this->addAddress($toAddress, $toName);
\r
54 $this->Subject = $subject;
\r
55 $this->Body = $body;
\r
56 $this->IsHTML($altbody != '');
\r