|
Server : Apache/2.4.41 (Ubuntu) System : Linux vmi1525618.contaboserver.net 5.4.0-105-generic #119-Ubuntu SMP Mon Mar 7 18:49:24 UTC 2022 x86_64 User : www-data ( 33) PHP Version : 8.2.12 Disable Function : NONE Directory : /var/www/parasoffline.edukrypt.in/application/helpers/ |
Upload File : |
<?php
/**
* http://www.codeigniter.com/user_guide/libraries/email.html
*/
// Send email using config (overriding CodeIgniter send_email() function)
// Configuration file: application/config/email.php
function send_email($to_email, $to_name, $subject, $view, $view_data = NULL)
{
// load values from config
$CI =& get_instance();
$CI->load->library('email');
$CI->config->load('email');
$from_email = $CI->config->item('from_email');
$from_name = $CI->config->item('from_name');
$subject = $CI->config->item('subject_prefix').$subject;
// basic parameters
$CI->email->from($from_email, $from_name);
$CI->email->to($to_email, $to_name);
$CI->email->subject($subject);
//$CI->email->cc($from_email, $from_name);
//$CI->email->reply_to($from_email, $from_name);
// confirm to send
$msg = $CI->load->view('email/'.$view, $view_data, TRUE);
$CI->email->message($msg);
if (ENVIRONMENT=='development')
{
$CI->email->send(FALSE);
echo $CI->email->print_debugger();
}
else
{
$CI->email->send();
}
}