Opencart设置了不能发送邮件:Opencart怎么设置Gmail?

6,698 人次阅读
没有评论

共计 12625 个字符,预计需要花费 32 分钟才能阅读完成。

First, download PHPmailer (http://sourceforge.net/projects/phpmailer/files/phpmailer%20for%20php5_6/)
1. Upload PHPmailer files
Only 3 files are essential:
CODE: SELECT ALL
class.phpmailer.php
class.pop3.php
class.smtp.php

Upload these 3 files to /system/library

2. Include PHPmailer in startup.php

Open /system/startup.php

Find:
CODE: SELECT ALL
require_once(DIR_SYSTEM . ‘library/mail.php’);

After, add:
CODE: SELECT ALL
require_once(DIR_SYSTEM . ‘library/class.phpmailer.php’);

3. Replace built-in mail function with PHPmailer in mail.php
Open: /system/library/mail.php

Find:

[php]
public function send() {
if (!$this->to) {
exit(‘Error: E-Mail to required!’);
}

if (!$this->from) {
exit(‘Error: E-Mail from required!’);
}

if (!$this->sender) {
exit(‘Error: E-Mail sender required!’);
}

if (!$this->subject) {
exit(‘Error: E-Mail subject required!’);
}

if ((!$this->text) && (!$this->html)) {
exit(‘Error: E-Mail message required!’);
}

if (is_array($this->to)) {
$to = implode(‘,’, $this->to);
} else {
$to = $this->to;
}

$boundary = ‘—-=_NextPart_’ . md5(time());

$header = ”;

if ($this->protocol != ‘mail’) {
$header .= ‘To: ‘ . $to . $this->newline;
$header .= ‘Subject: ‘ . $this->subject . $this->newline;
}

$header .= ‘From: ‘ . $this->sender . ‘<‘ . $this->from . ‘>’ . $this->newline;
$header .= ‘Reply-To: ‘ . $this->sender . ‘<‘ . $this->from . ‘>’ . $this->newline;
$header .= ‘Return-Path: ‘ . $this->from . $this->newline;
$header .= ‘X-Mailer: PHP/’ . phpversion() . $this->newline;
$header .= ‘MIME-Version: 1.0’ . $this->newline;
$header .= ‘Content-Type: multipart/mixed; boundary="’ . $boundary . ‘"’ . $this->newline;

if (!$this->html) {
$message = ‘–‘ . $boundary . $this->newline;
$message .= ‘Content-Type: text/plain; charset="utf-8"’ . $this->newline;
$message .= ‘Content-Transfer-Encoding: 8bit’ . $this->newline . $this->newline;
$message .= $this->text . $this->newline;
} else {
$message = ‘–‘ . $boundary . $this->newline;
$message .= ‘Content-Type: multipart/alternative; boundary="’ . $boundary . ‘_alt"’ . $this->newline . $this->newline;
$message .= ‘–‘ . $boundary . ‘_alt’ . $this->newline;
$message .= ‘Content-Type: text/plain; charset="utf-8"’ . $this->newline;
$message .= ‘Content-Transfer-Encoding: 8bit’ . $this->newline;

if ($this->text) {
$message .= $this->text . $this->newline;
} else {
$message .= ‘This is a HTML email and your email client software does not support HTML email!’ . $this->newline;
}

$message .= ‘–‘ . $boundary . ‘_alt’ . $this->newline;
$message .= ‘Content-Type: text/html; charset="utf-8"’ . $this->newline;
$message .= ‘Content-Transfer-Encoding: 8bit’ . $this->newline . $this->newline;
$message .= $this->html . $this->newline;
$message .= ‘–‘ . $boundary . ‘_alt–‘ . $this->newline;
}

foreach ($this->attachments as $attachment) {
if (file_exists($attachment[‘file’])) {
$handle = fopen($attachment[‘file’], ‘r’);
$content = fread($handle, filesize($attachment[‘file’]));

fclose($handle);

$message .= ‘–‘ . $boundary . $this->newline;
$message .= ‘Content-Type: application/octetstream’ . $this->newline;
$message .= ‘Content-Transfer-Encoding: base64’ . $this->newline;
$message .= ‘Content-Disposition: attachment; filename="’ . basename($attachment[‘filename’]) . ‘"’ . $this->newline;
$message .= ‘Content-ID: <‘ . basename($attachment[‘filename’]) . ‘>’ . $this->newline . $this->newline;
$message .= chunk_split(base64_encode($content));
}
}

$message .= ‘–‘ . $boundary . ‘–‘ . $this->newline;

if ($this->protocol == ‘mail’) {
ini_set(‘sendmail_from’, $this->from);

if ($this->parameter) {
mail($to, $this->subject, $message, $header, $this->parameter);
} else {
mail($to, $this->subject, $message, $header);
}

} elseif ($this->protocol == ‘smtp’) {
$handle = fsockopen($this->hostname, $this->port, $errno, $errstr, $this->timeout);

if (!$handle) {
error_log(‘Error: ‘ . $errstr . ‘ (‘ . $errno . ‘)’);
} else {
if (substr(PHP_OS, 0, 3) != ‘WIN’) {
socket_set_timeout($handle, $this->timeout, 0);
}

while ($line = fgets($handle, 515)) {
if (substr($line, 3, 1) == ‘ ‘) {
break;
}
}

if (substr($this->hostname, 0, 3) == ‘tls’) {
fputs($handle, ‘STARTTLS’ . $this->crlf);

while ($line = fgets($handle, 515)) {
$reply .= $line;

if (substr($line, 3, 1) == ‘ ‘) {
break;
}
}

if (substr($reply, 0, 3) != 220) {
error_log(‘Error: STARTTLS not accepted from server!’);
}
}

if (!empty($this->username) && !empty($this->password)) {
fputs($handle, ‘EHLO ‘ . getenv(‘SERVER_NAME’) . $this->crlf);

$reply = ”;

while ($line = fgets($handle, 515)) {
$reply .= $line;

if (substr($line, 3, 1) == ‘ ‘) {
break;
}
}

if (substr($reply, 0, 3) != 250) {
error_log(‘Error: EHLO not accepted from server!’);
}

fputs($handle, ‘AUTH LOGIN’ . $this->crlf);

$reply = ”;

while ($line = fgets($handle, 515)) {
$reply .= $line;

if (substr($line, 3, 1) == ‘ ‘) {
break;
}
}

if (substr($reply, 0, 3) != 334) {
error_log(‘Error: AUTH LOGIN not accepted from server!’);
}

fputs($handle, base64_encode($this->username) . $this->crlf);

$reply = ”;

while ($line = fgets($handle, 515)) {
$reply .= $line;

if (substr($line, 3, 1) == ‘ ‘) {
break;
}
}

if (substr($reply, 0, 3) != 334) {
error_log(‘Error: Username not accepted from server!’);
}

fputs($handle, base64_encode($this->password) . $this->crlf);

$reply = ”;

while ($line = fgets($handle, 515)) {
$reply .= $line;

if (substr($line, 3, 1) == ‘ ‘) {
break;
}
}

if (substr($reply, 0, 3) != 235) {
error_log(‘Error: Password not accepted from server!’);
}
} else {
fputs($handle, ‘HELO ‘ . getenv(‘SERVER_NAME’) . $this->crlf);

$reply = ”;

while ($line = fgets($handle, 515)) {
$reply .= $line;

if (substr($line, 3, 1) == ‘ ‘) {
break;
}
}

if (substr($reply, 0, 3) != 250) {
error_log(‘Error: HELO not accepted from server!’);
}
}

if ($this->verp) {
fputs($handle, ‘MAIL FROM: <‘ . $this->from . ‘>XVERP’ . $this->crlf);
} else {
fputs($handle, ‘MAIL FROM: <‘ . $this->from . ‘>’ . $this->crlf);
}

$reply = ”;

while ($line = fgets($handle, 515)) {
$reply .= $line;

if (substr($line, 3, 1) == ‘ ‘) {
break;
}
}

if (substr($reply, 0, 3) != 250) {
error_log(‘Error: MAIL FROM not accepted from server!’);
}

if (!is_array($this->to)) {
fputs($handle, ‘RCPT TO: <‘ . $this->to . ‘>’ . $this->crlf);

$reply = ”;

while ($line = fgets($handle, 515)) {
$reply .= $line;

if (substr($line, 3, 1) == ‘ ‘) {
break;
}
}

if ((substr($reply, 0, 3) != 250) && (substr($reply, 0, 3) != 251)) {
error_log(‘Error: RCPT TO not accepted from server!’);
}
} else {
foreach ($this->to as $recipient) {
fputs($handle, ‘RCPT TO: <‘ . $recipient . ‘>’ . $this->crlf);

$reply = ”;

while ($line = fgets($handle, 515)) {
$reply .= $line;

if (substr($line, 3, 1) == ‘ ‘) {
break;
}
}

if ((substr($reply, 0, 3) != 250) && (substr($reply, 0, 3) != 251)) {
error_log(‘Error: RCPT TO not accepted from server!’);
}
}
}

fputs($handle, ‘DATA’ . $this->crlf);

$reply = ”;

while ($line = fgets($handle, 515)) {
$reply .= $line;

if (substr($line, 3, 1) == ‘ ‘) {
break;
}
}

if (substr($reply, 0, 3) != 354) {
error_log(‘Error: DATA not accepted from server!’);
}

fputs($handle, $header . $message . $this->crlf);
fputs($handle, ‘.’ . $this->crlf);

$reply = ”;

while ($line = fgets($handle, 515)) {
$reply .= $line;

if (substr($line, 3, 1) == ‘ ‘) {
break;
}
}

if (substr($reply, 0, 3) != 250) {
error_log(‘Error: DATA not accepted from server!’);
}

fputs($handle, ‘QUIT’ . $this->crlf);

$reply = ”;

while ($line = fgets($handle, 515)) {
$reply .= $line;

if (substr($line, 3, 1) == ‘ ‘) {
break;
}
}

if (substr($reply, 0, 3) != 221) {
error_log(‘Error: QUIT not accepted from server!’);
}

fclose($handle);
}
}
}
[/php]

Replace with:

[php]
public function send() {
if (!$this->to) {
exit(‘Error: E-Mail to required!’);
}

if (!$this->from) {
exit(‘Error: E-Mail from required!’);
}

if (!$this->sender) {
exit(‘Error: E-Mail sender required!’);
}

if (!$this->subject) {
exit(‘Error: E-Mail subject required!’);
}

if ((!$this->text) && (!$this->html)) {
exit(‘Error: E-Mail message required!’);
}

if (is_array($this->to)) {
$to = implode(‘,’, $this->to);
} else {
$to = $this->to;
}

$mail = new PHPMailer; //True parameter tells PHPMailer to throw errors, remove for production once you have it working.
$mail->CharSet = ‘utf-8’;

$boundary = ‘—-=_NextPart_’ . md5(time());

$header = ”;

if ($this->protocol != ‘mail’) {
$header .= ‘To: ‘ . $to . $this->newline;
$header .= ‘Subject: ‘ . $this->subject . $this->newline;
$mail->AddAddress($to);
$mail->Subject = $this->subject;

}

$header .= ‘From: ‘ . $this->sender . ‘<‘ . $this->from . ‘>’ . $this->newline;
$mail->SetFrom($this->from,$this->sender);
$header .= ‘Reply-To: ‘ . $this->sender . ‘<‘ . $this->from . ‘>’ . $this->newline;
$mail->AddReplyTo($this->from,$this->sender);

$header .= ‘Return-Path: ‘ . $this->from . $this->newline;
$header .= ‘X-Mailer: PHP/’ . phpversion() . $this->newline;
$header .= ‘MIME-Version: 1.0’ . $this->newline;
$header .= ‘Content-Type: multipart/mixed; boundary="’ . $boundary . ‘"’ . $this->newline;

if (!$this->html) {
$message = ‘–‘ . $boundary . $this->newline;
$message .= ‘Content-Type: text/plain; charset="utf-8"’ . $this->newline;
$message .= ‘Content-Transfer-Encoding: 8bit’ . $this->newline . $this->newline;
$message .= $this->text . $this->newline;
$mail->AltBody = $this->text;
} else {
$message = ‘–‘ . $boundary . $this->newline;
$message .= ‘Content-Type: multipart/alternative; boundary="’ . $boundary . ‘_alt"’ . $this->newline . $this->newline;
$message .= ‘–‘ . $boundary . ‘_alt’ . $this->newline;
$message .= ‘Content-Type: text/plain; charset="utf-8"’ . $this->newline;
$message .= ‘Content-Transfer-Encoding: 8bit’ . $this->newline;

if ($this->text) {
$message .= $this->text . $this->newline;
} else {
$message .= ‘This is a HTML email and your email client software does not support HTML email!’ . $this->newline;
}

$message .= ‘–‘ . $boundary . ‘_alt’ . $this->newline;
$message .= ‘Content-Type: text/html; charset="utf-8"’ . $this->newline;
$message .= ‘Content-Transfer-Encoding: 8bit’ . $this->newline . $this->newline;
$message .= $this->html . $this->newline;
$message .= ‘–‘ . $boundary . ‘_alt–‘ . $this->newline;
$mail->AltBody = $this->text;
$mail->MsgHTML($this->html);

}

foreach ($this->attachments as $attachment) {
if (file_exists($attachment[‘file’])) {
$mail->AddAttachment($attachment[‘file’]);
$handle = fopen($attachment[‘file’], ‘r’);
$content = fread($handle, filesize($attachment[‘file’]));

fclose($handle);

$message .= ‘–‘ . $boundary . $this->newline;
$message .= ‘Content-Type: application/octetstream’ . $this->newline;
$message .= ‘Content-Transfer-Encoding: base64’ . $this->newline;
$message .= ‘Content-Disposition: attachment; filename="’ . basename($attachment[‘filename’]) . ‘"’ . $this->newline;
$message .= ‘Content-ID: <‘ . basename($attachment[‘filename’]) . ‘>’ . $this->newline . $this->newline;
$message .= chunk_split(base64_encode($content));
}
}

$message .= ‘–‘ . $boundary . ‘–‘ . $this->newline;

if ($this->protocol == ‘mail’) {
ini_set(‘sendmail_from’, $this->from);

if ($this->parameter) {
mail($to, $this->subject, $message, $header, $this->parameter);
} else {
mail($to, $this->subject, $message, $header);
}

} elseif ($this->protocol == ‘smtp’) {
$mail->Username = $this->username;
$mail->Password = $this->password;
$mail->Port = $this->port;
if (strpos($this->hostname,’gmail’)) {
$mail->SMTPSecure = ‘ssl’;
$mail->SMTPAuth = true;
}
$mail->Host = $this->hostname;
$mail->IsSMTP();
if(!$mail->Send()) {
error_log($mail->ErrorInfo);
}
}
}

[/php]

4. Do the same with Contact Form
Open: /catalog/controller/information/contact.php

Find:

[php]
$mail = new Mail();
$mail->protocol = $this->config->get(‘config_mail_protocol’);
$mail->parameter = $this->config->get(‘config_mail_parameter’);
$mail->hostname = $this->config->get(‘config_smtp_host’);
$mail->username = $this->config->get(‘config_smtp_username’);
$mail->password = $this->config->get(‘config_smtp_password’);
$mail->port = $this->config->get(‘config_smtp_port’);
$mail->timeout = $this->config->get(‘config_smtp_timeout’);
$mail->setTo($this->config->get(‘config_email’));
$mail->setFrom($this->request->post[’email’]);
$mail->setSender($this->request->post[‘name’]);
$mail->setSubject(sprintf($this->language->get(’email_subject’), $this->request->post[‘name’]));
$mail->setText(strip_tags(html_entity_decode($this->request->post[‘enquiry’], ENT_QUOTES, ‘UTF-8’)));
$mail->send();
[/php]

Replace with:

[php]
$mail = new PHPMailer(true); //New instance, with exceptions enabled

$body = strip_tags(html_entity_decode($this->request->post[‘enquiry’], ENT_QUOTES, ‘UTF-8’));
$body = preg_replace(‘/\\\\/’,”, $body); //Strip backslashes

$mail->IsSMTP(); // tell the class to use SMTP
$mail->SMTPAuth = true; // enable SMTP authentication
$mail->Port = $this->config->get(‘config_smtp_port’); // set the SMTP server port
$mail->Host = $this->config->get(‘config_smtp_host’); // SMTP server
$mail->Username = $this->config->get(‘config_smtp_username’); // SMTP server username
$mail->Password = $this->config->get(‘config_smtp_password’); // SMTP server password

//$mail->IsSendmail(); // tell the class to use Sendmail

$mail->AddReplyTo($this->config->get(‘config_email’));

$mail->From = $this->request->post[’email’];
$mail->FromName = $this->request->post[‘name’];

$to = $this->config->get(‘config_email’);

$mail->AddAddress($to);

$mail->Subject = sprintf($this->language->get(’email_subject’), $this->request->post[‘name’]);

$mail->AltBody = "To view the message, please use an HTML compatible email viewer!"; // optional, comment out and test
$mail->WordWrap = 80; // set word wrap

$mail->MsgHTML($body);

$mail->IsHTML(true); // send as HTML

$mail->Send();
[/php]

At last but not least, do not forget to configure your mail section in admin!
Login to admin and go to System > Settings > Mail
Mail Protocol: SMTP
SMTP Host: localhost
SMTP Username: info@mydomain.com
SMTP Password: *******
SMTP Port: 25
SMTP Timeout: 5
Alert Mail: Yes
Additional Alert E-Mails: additional@gmail.com

Note: I set host to localhost as I use info@mydomain.com. If you use Gmal/Yahoo/etc, set it to proper SMTP server.

Important: Im not an experienced in php coding. There might be some flaws in this code as I don’t understand it fully (hey, at least I’m being honest! ).
Example of potential flaw: in 3rd step the replacement code includes this line:
CODE: SELECT ALL
if (strpos($this->hostname,’gmail’))
I have no idea what is the purpose of gmail part! Please advise

I hope it works for you too!

正文完
 0