Невозможно отправлять электронные письма с вложениями, используя эластичный почтовый API в codeigniter

Я использовал TCPDF для генерации PDF, который работает нормально. Я пытаюсь отправить электронное письмо с PDF, созданным в виде вложения в электронное письмо. Письма отправляются без вложений. Пожалуйста, помогите исправить приведенные ниже коды, чтобы приложение также отправлялось по электронной почте.

payment.php

$attachment =  $pdf->Output('example_001.pdf', 'D');
$attachment = base64_encode($attachment);

$attachmentlink = 'http://localhost/cfac/resources/invoices/example_001.pdf';

$inputdata['firstname']="abc";
$inputdata['ename']="Event Name";
$inputdata['tno']="tno:232423";
$inputdata['amount']="10000rs";
$inputdata['edetails']="EDetails";
$inputdata['startdate']="Start Date";
$inputdata['enddate']="End Date";
$template='xyz';

$emailid="xxx@gmail.com";
// email helper to send email
$this->load->helper ('email');

$filename = "example_001.pdf";
$file_name_with_full_path = base_url()."resources/inv/example_001.pdf";
$filetype = "application/pdf";

$attachmentFiles = array('http://localhost/cfac/resources/inv/example_001.pdf');send_email($emailid,$inputdata,$template, $attachmentFiles );

emailhelper.php

Детали emailconfig были установлены со значениями в конфигурационном файле.

<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');if ( ! function_exists('send_email'))
{

function send_email($emailid,$inputdata,$template,$attachmentFiles )
{

$CI =& get_instance();
$CI->load->config('emailcofnig');
//$ci->email->attach( 'http://localhost/cfac/resources/inv/example_001.pdf');

$emailconfig=$CI->config->item('elasticemail');

$url=$emailconfig['url'];

$filename = "example_001.pdf";
$file_name_with_full_path = "http://localhost/cfac/resources/invoices/example_001.pdf";
$filetype = "application/pdf";$email = array(
'from' => $emailconfig['fromemailid'],
'fromName' => $emailconfig['from'],
'apikey' => $emailconfig['apikey'],
'subject' => $emailconfig['defaultsubject'],
'to' => $emailid,
'isTransactional' => true,
'template' => $templatename,
'file_1' => new CurlFile($file_name_with_full_path, $filetype, $filename)
);

foreach($inputdata as $key => $value)
{
$email['merge_'.$key] = $value;
}// use key 'http' even if you send the request to https://...
$options = array(
'http' => array(
'header'  => "Content-type: application/x-www-form-urlencoded\r\n",
'method'  => 'POST',
'content' => http_build_query($email)
)
);

$context  = stream_context_create($options);
$result = file_get_contents($url, false, $context);
if ($result === FALSE) { /* Handle error */ return 0;}

}
}

?>

1

Решение

Задача ещё не решена.

Другие решения

Других решений пока нет …

По вопросам рекламы ammmcru@yandex.ru
Adblock
detector