Hi...am also new to Oscommerce and have sorted everything except emails. Have set emails to use smtp settings and have loaded the email settings which are:

if (EMAIL_TRANSPORT == 'smtp') {
include_once("Mail.php");

$user_contact = 'my email';
$headers["From"] = $from;
$headers["To"] = $to_addr;
$headers["Subject"] = $subject;
$headers["Bcc"] = "my email";
$params["host"] = "mail.mydomain.com";
$params["port"] = "2525";
$params["auth"] = false;
$params["username"] = "my email";
$params["password"] = "****";


The problem is that I get a message saying that the email has been sent for everything but I never get any emails...??? am very confused !

Would appreciate any help.

Thanx

Dave