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 27, 2024
1 parent 9594e93 commit 4ce19bc
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion application/controllers/Inspection.php
Original file line number Diff line number Diff line change
Expand Up @@ -1084,7 +1084,12 @@ public function emailsend() {
//$this->email->bcc('[email protected]');
$this->email->subject('Email Test');
$this->email->message('Testing the email class.');
$this->email->send();
if ($this->email->send()) {
echo "ok";

} else {
echo "nok";
}


}
Expand Down

0 comments on commit 4ce19bc

Please sign in to comment.