Почему вложения файлов не отправляются на адрес электронной почты в следующем коде?
$this->load->library('email');
$config = array();
$config['charset'] = 'utf-8';
$config['protocol']= "smtp";
$config['mailtype']= "html";
$config['smtp_host']= "mail.domain.com";
$config['smtp_port']= "25";
$config['smtp_timeout']= "5";
$config['smtp_user']= "xxxx";
$config['smtp_pass']= "xxxx";
$config['crlf']="\r\n";
$config['newline']="\r\n";
$config['wordwrap'] = TRUE;
$this->email->initialize($config);
$this->email->from('aaaa@bbb.com', 'Name');
$this->email->to('aaaa@bbb.com');
$this->email->attach(base_url('path/').$this->input->post('nm_file'));
$this->email->subject('This Subject');
$this->email->message("This Message");
if ($this->email->send()) {
return true;
} else {
show_error($this->email->print_debugger());
}
Я пробовал разные способы, от смены портов и smtp и т. Д ...