Added email config to Store Config, added Email_lib, refactored email code (#441, #519)

This commit is contained in:
FrancescoUK
2016-06-23 19:26:51 +01:00
parent cf860be1fc
commit 331d97b48f
25 changed files with 408 additions and 45 deletions

View File

@@ -0,0 +1,49 @@
<?php if (!defined('BASEPATH')) exit('No direct script access allowed');
class Email_lib
{
private $CI;
public function __construct()
{
$this->CI =& get_instance();
$this->CI->load->library('email');
$config = array(
'mailtype' => 'html',
'useragent' => 'OSPOS',
'validate' => TRUE,
'protocol' => $this->CI->config->item('protocol'),
'mailpath' => $this->CI->config->item('mailpath'),
'smtp_host' => $this->CI->config->item('smtp_host'),
'smtp_user' => $this->CI->config->item('smtp_user'),
'smtp_pass' => $this->CI->config->item('smtp_pass'),
'smtp_port' => $this->CI->config->item('smtp_port'),
'smtp_timeout' => $this->CI->config->item('smtp_timeout'),
'smtp_crypto' => $this->CI->config->item('smtp_crypto')
);
$this->CI->email->initialize($config);
}
/*
* Email sending function
* Example of use: $response = sendEmail('john@doe.com', 'Hello', 'This is a message', $filename);
*/
public function sendEmail($to, $subject, $message, $attachment = NULL)
{
$this->CI->email->from($this->CI->config->item('email'), $this->CI->config->item('company'));
$this->CI->email->to($to);
$this->CI->email->subject($subject);
$this->CI->email->message($message);
if( !empty($attachment) )
{
$this->CI->email->attach($attachment);
}
return $this->CI->email->send();
}
}
?>