我正在运行Opencart版本2.0.1.1。我需要一种编辑注册和订单更新电子邮件布局的方法。
通过这个,我的意思是使用HTML / CSS控制整个布局,而不仅仅是编辑变量的文本定义。我知道这些位于:
分别为 ./catalog/language/english/mail/customer.php
和../order.php
。
我的主题附带了位于./catalog/view/theme/theme574/template/mail/order.tpl
的订单电子邮件模板的自定义邮件(见下文)。
我希望用户注册时以及用注释更新订单状态时的控制级别。
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/1999/REC-html401-19991224/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title><?php echo $title; ?></title>
</head>
<body style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #000000;">
<div style="width: 680px;"><a href="<?php echo $store_url; ?>" title="<?php echo $store_name; ?>"><img src="<?php echo $logo; ?>" alt="<?php echo $store_name; ?>" style="margin-bottom: 20px; border: none;" /></a>
<p style="margin-top: 0px; margin-bottom: 20px;"><?php echo $text_greeting; ?></p>
<?php if ($customer_id) { ?>
<p style="margin-top: 0px; margin-bottom: 20px;"><?php echo $text_link; ?></p>
<p style="margin-top: 0px; margin-bottom: 20px;"><a href="<?php echo $link; ?>"><?php echo $link; ?></a></p>
...
...
...
有人可以帮我吗?任何有关从哪里开始的提示都将不胜感激。
谢谢。
答案 0 :(得分:1)
我有同样的问题,但我使用mailgun lib发送我的邮件,我可以使用html / css模板:)
如果您愿意,请按以下步骤操作: 1-download mailgun lib https://github.com/mailgun/mailgun-php
2-您必须编辑系统邮件系统或将您的功能添加到opencart系统: (我改变邮件功能opencart totaly) 我将此代码添加到 /system/library/mail.php 将send()重命名为oldsend()或任何你想要的
//extracted mailgun lib address
require 'mailgun/autoload.php';
use Mailgun\Mailgun;
public function send(){
$mg = new Mailgun("mailgunkey goeshere");
$domain = "your domain code";
$mg->sendMessage($domain, array(
'from' => $this->from ,
'to' => $this->to ,
'subject' => $this->subject ,
'text' => $this->text ,
'html' => $this->html
));
}
作为发送邮件的示例:
$data['text_discount'] = 'text';
if (file_exists(DIR_TEMPLATE . $this->config->get('config_template') . '/template/mail/welcome.tpl')) {
$html = $this->load->view($this->config->get('config_template') . '/template/mail/welcome.tpl', $data);
} else {
$html = $this->load->view('default/template/mail/welcome.tpl', $data);
}
$mail->setTo($data['email']);
$mail->setFrom($this->config->get('config_email'));
$mail->setSender(html_entity_decode($this->config->get('config_name'),ENT_QUOTES, 'UTF-8'));
$mail->setSubject($subject);
$mail->setHtml($html);
$mail->send();
这只是基本的例子:)