首页 > 网站 > 建站经验 > 正文

ecshop教程:虚拟商品发送邮件通知源码分析

2024-04-25 20:34:19
字体:
来源:转载
供稿:网友

首先在订单列表中可以获得到处理订单的php文件为flow.php,之后在最后一步url地址显示为

/flow.php?step=done

从flow.php文件中找到$_REQUEST['step'] == 'done' 在其中大约1733行有

/* 虚拟卡发货 */

if (virtual_goods_ship($virtual_goods,$msg, $order['order_sn'], true))

这个函数virtual_goods_ship($virtual_goods,$msg, $order['order_sn'], true) 是处理虚拟商品发货的,追踪到这个函数中

在第二个foreach循环里有个(1024行)

if (virtual_card_shipping($goods, $order_sn, $msg, $process))

virtual_card_shipping($goods, $order_sn, $msg, $process) 这个函数追踪进去以后大约在1153行有发送邮件的send_mail()函数

virtual_goods_ship()

virtual_card_shipping()

这两个函数都在lib_common.php里面

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表