邮件模板里的“发货单号是”那段显不出来

2016-07-07 15:16 来源:www.chinab4c.com 作者:ecshop专家

亲爱的{$order.consignee}。你好!
您的订单{$order.order_sn}已于{$send_time}按照您预定的配送方式给您发货了。
{if $order.invoice_no}发货单号是{$order.invoice_no}。
{/if}
在您收到货物之后请点击下面的链接确认您已经收到货物:
[url=%7B$confirm_url%7D]{$confirm_url}[/url]
如果您还没有收到货物可以点击以下链接给我们留言:
[url=%7B$send_msg_url%7D]{$send_msg_url}[/url]
再次感谢您对我们的支持。欢迎您的再次光临。
{$shop_name}
{$send_date}

我想问这段为什么在发给顾客时,显示不出来?我有填发货单号。
{if $order.invoice_no}发货单号是{$order.invoice_no}。
{/if}

回答:
帮你顶一点

找 admin裡面的 order.php找到
  1. /* 发送邮件 */$cfg = $_CFG['send_ship_email'];if ($cfg == '1'){$tpl = get_mail_template('deliver_notice');
复制代码




加上
這一句
  1. $order['invoice_no'] = $invoice_no;
复制代码



變成:
  1. /* 发送邮件 */$cfg = $_CFG['send_ship_email'];if ($cfg == '1'){$order['invoice_no'] = $invoice_no;$tpl = get_mail_template('deliver_notice');
复制代码


即可!


今日才發現 2.7有這個問題,
原來4個月沒有給顧客單號,
實在是太嚴重了!

very good!

goood