xampp , and codeigniter , i want to send emails from my localhost .
in ubuntu i can create an Email server very easily by
$ sudo apt-get install sendmail
and update the configuration in application/frontend/config/email.php
$config['useragent'] = "CodeIgniter";
$config['mailpath'] = "/usr/bin/sendmail"; // or "/usr/sbin/sendmail"
$config['protocol'] = "mail";
$config['smtp_host'] = "localhost";
$config['smtp_user'] = "";
$config['smtp_pass'] = "";
$config['smtp_port'] = "25";
i want to setup sendmail
in windows , how can i do this ?? please help . search a lot , but could not find a working solution .