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 28, 2024
1 parent 82c00e2 commit e0d321c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions application/controllers/Inspection.php
Original file line number Diff line number Diff line change
Expand Up @@ -1089,10 +1089,10 @@ public function emailsend() {
$config['charset'] = 'utf-8';
$config['crlf'] = '\r\n';
$config['newline'] = '\r\n';
$config['smtp_host'] = 'customers.inline.gr';
$config['smtp_host'] = '162.55.99.207';
$config['smtp_user'] = '[email protected]';
$config['smtp_pass'] = '*1@0$aghLvGq%';
$config['smtp_port'] = '587';
$config['smtp_pass'] = $smtpass;
$config['smtp_port'] = '25';
$config['smtp_timeout'] = '15';
$this->email->initialize($config);
$this->email->to('[email protected]');
Expand All @@ -1101,10 +1101,10 @@ public function emailsend() {
//$this->email->bcc('[email protected]');
$this->email->subject('Email Test');
$this->email->message('Testing the email class.');
//$this->email->send(FALSE);
$this->email->send(FALSE);

// Will only print the email headers, excluding the message subject and body
//$this->email->print_debugger();
$this->email->print_debugger();


if ($this->email->send()) {
Expand Down

0 comments on commit e0d321c

Please sign in to comment.