summaryrefslogtreecommitdiff
path: root/classes/ttrssmailer.php
blob: 1b450c50ce93ff521de81dbcc5b25769a4063bf1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<?php
/*	@class ttrssMailer
*	@brief A TTRSS extension to the PHPMailer class
*	Configures default values through the __construct() function
*	@author Derek Murawsky
*	@version .1 (alpha)
*
*/
require_once 'lib/phpmailer/class.phpmailer.php';
require_once "config.php";

class ttrssMailer extends PHPMailer {

		//define all items that we want to override with defaults in PHPMailer
		public $From = SMTP_FROM_ADDRESS;
		public $FromName = SMTP_FROM_NAME;
		public $CharSet = "UTF-8";
		public $PluginDir = "lib/phpmailer/";
		public $ContentType = "text/html"; //default email type is HTML
		public $Host;
		public $Port;
		public $SMTPAuth=False;
		public $Username;
		public $Password;
	
	function __construct() {
		$this->SetLanguage("en", "lib/phpmailer/language/");
		//if SMTP_HOST is specified, use SMTP to send mail directly
		if (SMTP_HOST) {
			$Host = SMTP_HOST;
			$Mailer = "smtp";
		}
		//if SMTP_PORT is specified, assign it. Otherwise default to port 25
		if(SMTP_PORT){
			$Port = SMTP_PORT;
		}else{
			$Port = "25";
		}
		
		//if SMTP_LOGIN is specified, set credentials and enable auth
		if(SMTP_LOGIN){
			$SMTPAuth = true;
			$Username = SMTP_LOGIN;
			$Password = SMTP_PASSWORD;
			}
	}
	/*	@brief a simple mail function to send email using the defaults
	*	This will send an HTML email using the configured defaults
	*	@param $toAddress A string with the recipients email address
	*	@param $toName A string with the recipients name
	*	@param $subject A string with the emails subject
	*	@param $body A string containing the body of the email
	*/
	public function quickMail ($toAddress, $toName, $subject, $body, $altbody=""){
		$this->addAddress($toAddress, $toName);
		$this->Subject = $subject;
		$this->Body = $body;
		$rc=$this->send();
		return $rc;
	}
}

?>