Skip to content

Commit

Permalink
Update Inspection.php
Browse files Browse the repository at this point in the history
  • Loading branch information
pavlosb committed Jun 26, 2024
1 parent 746443c commit 5b5567f
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion application/controllers/Inspection.php
Original file line number Diff line number Diff line change
Expand Up @@ -1079,7 +1079,15 @@ private function _checksignature($inspid) {
public function emailsend() {

$this->load->library('email');
print_r($config);
$this->email->to('[email protected]');
//$this->email->cc('[email protected]');
//$this->email->bcc('[email protected]');

$this->email->subject('Email Test');
$this->email->message('Testing the email class.');

$this->email->send();


}

Expand Down

0 comments on commit 5b5567f

Please sign in to comment.