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 337c8ec commit 7ef1155
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions application/controllers/Inspection.php
Original file line number Diff line number Diff line change
Expand Up @@ -1081,7 +1081,7 @@ public function emailsend() {



$this->load->library('email');
//$this->load->library('email');
$smtpass = getenv("SMTPPASS");
$config['protocol'] = 'smtp';
$config['wordwrap'] = TRUE;
Expand All @@ -1093,7 +1093,8 @@ public function emailsend() {
$config['smtp_user'] = '[email protected]';
$config['smtp_pass'] = $smtpass;
$config['smtp_crypto'] = 'TLS';
$config['smtp_port'] = '587';$config['smtp_timeout'] = '15';
$config['smtp_port'] = '587';
$config['smtp_timeout'] = '15';
$this->email->initialize($config);
$this->email->to('[email protected]');
$this->email->from('[email protected]', 'IMPERIAL-DEKRA');
Expand Down

0 comments on commit 7ef1155

Please sign in to comment.