shreeprasath wrote:Iam using localhost RussH,,
Okay if this is localhost, you're best off to use an existing email account - gmail is a good example. Please see below what you need in your config.php.. note you will need to put in your actual gmail username and password
/* This setting configures the method used to send e-mail from CATS. CATS
* can send e-mail via SMTP, PHP's built-in mail support, or via Sendmail.
* 0 is recomended for Windows.
*
* 0: Disabled
* 1: PHP Built-In Mail Support
* 2: Sendmail
* 3: SMTP
*/
define('MAIL_MAILER', 3);
/* Sendmail Settings. You don't need to worry about this unless MAIL_MAILER
* is set to 2.
*/
define('MAIL_SENDMAIL_PATH', "/usr/sbin/sendmail");
/* SMTP Settings. You don't need to worry about this unless MAIL_MAILER is
* set to 3. If your server requires authentication, set MAIL_SMTP_AUTH to
* true and configure MAIL_SMTP_USER and MAIL_SMTP_PASS.
*/
define('MAIL_SMTP_HOST', "
smtp.gmail.com");
define('MAIL_SMTP_PORT',
587);
define('MAIL_SMTP_AUTH',
true);
define('MAIL_SMTP_USER', "
sheeprasath gmail user");
define('MAIL_SMTP_PASS', "
sheeprasath gmail pass");
//Options: '', 'ssl' or 'tls'
define('MAIL_SMTP_SECURE', "
tls");
RussH