"PHP" / Говнокод #16316 Ссылка на оригинал

0

  1. 1
  2. 2
  3. 3
  4. 4
  5. 5
  6. 6
  7. 7
  8. 8
  9. 9
  10. 10
  11. 11
  12. 12
  13. 13
  14. 14
function email($from, $to, $subject, $message)
{
	$ci =& get_instance();
	
	$config['mailtype'] = 'html';
	$ci->load->library('email', $config);

	$ci->email->clear();
	$ci->email->from($from);
	$ci->email->to($to);  
	$ci->email->subject($subject);
	$ci->email->message($message); 
	$ci->email->send();
}

Запостил: iweb iweb, (Updated )

Комментарии (21) RSS

Добавить комментарий

Переведи на "PHP", guest!

    А не использовать ли нам bbcode?


    8