Archived
1
0

Generalization of the mail sending process

This commit is contained in:
Marcel
2018-10-28 16:44:10 +01:00
parent 0d52f7ea98
commit 7345730057
3 changed files with 32 additions and 16 deletions

View File

@@ -0,0 +1,29 @@
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
use Coduo\PHPHumanizer\DateTimeHumanizer;
class EmailModel extends CI_Model
{
function __construct()
{
parent::__construct();
}
function sendMail($recipient, $subject, $template, $templateData) {
$this->load->library('email');
$config['mailtype'] = 'html';
$this->email->initialize($config);
$this->email->from('no-reply@kingofdog.eu', 'KingOfDog');
$this->email->to($recipient);
$this->email->subject($subject);
$this->email->message($this->load->view('emails/', $template, $templateData, true));
$this->email->send();
}
}