HEX
Server: nginx/1.28.1
System: Linux 10-41-63-61 6.8.0-31-generic #31-Ubuntu SMP PREEMPT_DYNAMIC Sat Apr 20 00:40:06 UTC 2024 x86_64
User: www (1001)
PHP: 7.4.33
Disabled: passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv
Upload Files
File: /www/wwwroot/ww.snodshop.com/Public/Common/akmall.mail.tpl0.php
<?php
/*
 * 标题:AK单页订单管理系统企业版
 * 作者:liubanyu7514(微信号)
 * 官方网址:www.akmall.cc
 * *
 */
$payment = C('PAYMENT');
$order['item_extends'] = json_decode($order['item_extends'],true);
$order['add_time'] = date('Y-m-d H:i:s',$order['add_time']);
foreach($order['item_extends'] as $k=>$v){ 
	$v = is_array($v)?implode(',', $v):$v;
	$item_extends .= "<span>【{$k}】{$v}</span><br>";
}

$order_notification = lang('booking_notification');
$order_number = lang('order_number');
$item_name = lang('item_name');
$item_package = lang('item_package');
$extends_package = lang('extends_package');
$order_quantity = lang('order_quantity');
$order_totalPrice = lang('order_totalPrice');
$payments = lang('payment');
$customer_realname = lang('customer_realname');
$customer_mobile = lang('customer_mobile');
$customer_phone = lang('customer_phone');
$customer_address = lang('customer_address');
$zcode = lang('zcode');
$customer_qq = lang('customer_qq');
$customer_mail = lang('customer_mail');
$order_remark = lang('order_remark');
$booking_time = lang('booking_time');
$booking_ip = lang('booking_ip');
$booking_address = lang('booking_address');
$item_attribute = lang('item_attribute');

$akmallSendContent = <<<EOF
<h1 style="margin:20px 0;padding:10px 0;font-size:20px;color:#f60;border-bottom:2px solid #ccc;">{$order_notification}</h1>
<div>
	<p>【{$order_number}】{$order['order_no']}</p>
	<p>【{$item_name}】{$order['item_name']}</p>
	<p>【{$item_attribute}】{$order['item_params']}</p>
	<p>{$item_extends}</p>
	<p>【{$order_quantity}】{$order['quantity']}</p>
	<p>【{$order_totalPrice}】<b style="color:#f60;">{$order['total_price']}</b></p>
	<p>【{$payments}】{$payment[$order['payment']]['name']}</p>

	<p>【{$customer_realname}】{$order['name']}</p>
	<p>【{$customer_mobile}】{$order['mobile']}</p>
	<p>【{$customer_phone}】{$order['phone']}</p>
	<p>【{$customer_address}】{$order['region']} {$order['address']}</p>
	<p>【{$zcode}】{$order['zcode']}</p>
	<p>【{$customer_qq}】{$order['qq']}</p>
	<p>【{$customer_mail}】{$order['mail']}</p>
	<p>【{$order_remark}】{$order['remark']}</p>

	<p>【{$booking_time}】{$order['add_time']}</p>
	<p>【{$booking_ip}】{$order['add_ip']}</p>
	<p>【{$booking_address}】{$order['url']}</p>
</div>
EOF;
return $akmallSendContent;
?>