Wiki

Clone wiki

OCphpmailer / Home

Welcome

This is the official documentation page for the phpmailer mod for OpenCart.

Description

This mod replaces the send function of the mail class with a wrapper for phpmailer.

New in V2

  • Added setReadReceipt method to allow setting an email address to send read receipts to.
  • Reworked the vqmod file so that it works with all versions of opencart and should handle new versions as well.
  • Changed character set to UTF-8 to fix problems with Cyrillic text.
  • Changed attachment function to work properly.

Requirements

This mod requires vqmod.

Vqmod can be downloaded from http://vqmod.com

Install Instructions

To install upload all files from the upload folder to the root of your opencart install.

Usage

To use with google mail use the following settings

Mail Protocol: SMTP
SMTP Host: smtp.googlemail.com
SMTP Username: your full gmail address blah@gmail.com
SMTP Password: your gmail password
SMTP Port: 587

When using SMTP it uses TLS for port 587 and SSL for port 465

mail protocol setting of mail uses php mail() function.

to add a read receipt in the code use $mail->setReadReceipt('someone@somewhere.com');

If you need to remove the mod simply delete the system/library/phpmailer folder and the vqmod/xml/PHPMailer.xml file.

Support

If you have any problems or find any bugs please report an issue on the Issue Tracker

If you are a developer feel free to submit pull requests.

Updated