Skip to content

Commit

Permalink
email
Browse files Browse the repository at this point in the history
  • Loading branch information
pavlosb committed Jun 26, 2024
1 parent 5b5567f commit a6ce11d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
3 changes: 1 addition & 2 deletions application/config/email.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,4 @@
$config['smtp_user'] = '[email protected]';
$config['smtp_pass'] = $smtpass;
$config['smtp_port'] = '587';
$config['smtp_crypto'] = 'TLS';
$config['smtp_timeout'] = '5';
$config['smtp_timeout'] = '255';
3 changes: 2 additions & 1 deletion application/controllers/Inspection.php
Original file line number Diff line number Diff line change
Expand Up @@ -1080,7 +1080,8 @@ public function emailsend() {

$this->load->library('email');
$this->email->to('[email protected]');
//$this->email->cc('[email protected]');
$this->email->from('[email protected]', 'IMPERIAL-DEKRA');
$this->email->cc('[email protected]');
//$this->email->bcc('[email protected]');

$this->email->subject('Email Test');
Expand Down

0 comments on commit a6ce11d

Please sign in to comment.