OsCommerce supports the use of SMTP to send email, but does not allow specification of a username and password for outgoing authentication, which is required when sending mail from our servers.
If you are on a server that does not allow the PHP mail() function or you just wish to use SMTP to send mail, this guide will walk you through how to set up SMTP with your shopping cart.
It is best to use an email address that you created in your cPanel on our server for the SMTP setup, but you can use your outgoing email settings for most other mail providers to send emails.
First thing to do is log in to the administrative panel, then go to Configuration ~> Email options and choose “SMTP” as the Transport Method.
Also verify these other settings:
Email Line Feels: LF
Use MIME EMail when sending email: YES
Verify E-Mail Addresses Through DNS : FALSE
Use MIME HTML When Sending Emails: FALSE
Also check the the General Store configuration to see that the Email Address and Email From fields are the same as the outgoing email address you’ll be using for the setup.
You’ll need to install a 3rd party script called phpMailer. As with any other time, please make a backup copy of any files you are changing in case something goes wrong!
To install phpMailer:
1. Download a copy of phpMailer
- There are two files, class.phpmailer.php and class.smtp.php. Open the FTP site to the OScommerce installation, then upload them both into these folders:
…/admin/includes/classes
…/includes/classes/
- There are two files in OsCommerce that you need to edit:
…/includes/classes/email.php
…/admin/includes/classes/email.php
In the email.php file, locate this section: (line 519)
if (EMAIL_TRANSPORT == ‘smtp’)
{
return mail($to_addr, $subject, $this->output, ‘From: ‘ . $from . $this->lf . ‘To: ‘ . $to . $this-> lf . implode($this->lf, $$
}
else {
return mail($to, $subject, $this->output, ‘From: ‘.$from.$this->lf.implode($this->lf, $this->headers).$this->lf.implode($this$
}
}
You’ll need to comment out some of these lines, so they look like this:
if (EMAIL_TRANSPORT == ‘smtp’) {
// return mail($to_addr, $subject, $this->output, ‘From: ‘ . $from . $this->lf . ‘To: ‘ . $to . $this->lf . implode($this->lf, $$
// } else {
// return mail($to, $subject, $this->output, ‘From: ‘.$from.$this->lf.implode($this->lf, $this->headers).$this->lf.implode($this$
// }
// }
Then copy and paste this code directly below those lines. Be sure to change the Host, Username, and Password fields to match the outgoing mail server. When sending from our systems, please just use ‘localhost‘ as the host, and your entire email address as the username.
require_once(DIR_WS_CLASSES . “class.phpmailer.php”);
$pMail = new PHPMailer();
$pMail->From = $from_addr;
$pMail->FromName = $from_name;
$pMail->IsSMTP();
$pMail->Host = “mail.example.com”; // replace with your smtp server
$pMail->Username = “email@example.com“; // replace with your smtp username (if SMTPAuth is true)
$pMail->Password = “password”; // replace with your smtp password (if SMTPAuth is true)
$pMail->SMTPAuth = true; // true/false – turn on/off smtp authentication
$pMail->Subject = $subject;
$pMail->Body = $this->output;
$pMail->AddAddress($to_addr, $to_name);
$pMail->IsHTML(false);
return $pMail->Send();
$pMail->ClearAddresses();
$pMail->ClearAttachments();
}
}
This needs to be done for both email.php files in order to get the user-side and backend emailing to work. There is a sample email.php available here:
source from https://www.inmotionhosting.com/support/edu/oscommerce/setting-up-smtp-with-oscommerce/
Updated on August 16, 2021by Brad Markle