Codeigniter Mailgun Library
- Codigniter 3
- Mailgun PHP library
- After installing the mailgun PHP library, simply put the Mail.php file in your codeigniter library folder.
$this->load->library('mail');
$data = array(
'from' => 'Name <[email protected]>',
'to' => 'Name <[email protected]>',
'subject' => 'Subject',
'text' => 'Plain text email',
'template' => 'location/to/template-view-file',
'template_variables' => array(),
'tags' => array()
);
$this->mail->send(null,$data);