отправить письмо с приложением в CodeIgniter - PullRequest
0 голосов
/ 23 мая 2018

PDF-вложение по электронной почте в коде CodeSgniter Mysource здесь

  $this->load->library('email', $config);
  $this->email->set_newline("\r\n");
  $this->email->from('test@gmail.com'); 
  $this->email->to($useremail);
  $this->email->cc('');
  $this->email->subject('pdf');
  $this->email->message($message);
  $this->email->attach('public_html/invoicepdf/171.pdf');
  $mailsucc =   $this->email->send();

Я пытался с этим, но не сработало

$this->email->attach('public_html/invoicepdf/171.pdf');

И я также заменяю путь на URL.

1 Ответ

0 голосов
/ 23 мая 2018

Вы можете отправить прикрепленный файл, используя метод

$this->email->attach($atch);

в codeigniter.в этом коде ниже я отправляю почту, используя SMTP с приложенным файлом.

Работает отлично.Вам нужно только указать base_url, чтобы определить путь к файлу вложения

Контроллер

$email_config = Array(
    'protocol' => 'smtp',
    'smtp_host' => 'ssl://smtp.gmail.com',
    'smtp_port' => 465,
    'smtp_user' => 'yourmail@gmail.com', // change it to yours
    'smtp_pass' => 'mypasswords', // change it to yours
    'mailtype'  => 'html',
    'charset'   => 'iso-8859-1'
);

// Defined Attachment file using variable
$atch=base_url().'html/images/logo.png';

$this->load->library('email', $email_config);

$this->email->set_newline("\r\n");
$this->email->from('test@gmail.com', 'Rudra');  // email From
$this->email->to('mailtosend@gmail.com');       // eMail to send
$this->email->subject('Mail with Attachment');  // Subject
$this->email->message("This is mail with Attachment file using CodeIgniter.");  // Message
$this->email->attach($atch);  // Attachment file defined using variable

$maill=$this->email->send(); // send mail

if($maill>0)
 {
  echo 'Email sent.';  // success
 }
 else
{
 show_error($this->email->print_debugger());
}
...