42 lines
762 B
PHP
42 lines
762 B
PHP
<?php
|
||
|
||
namespace services;
|
||
|
||
class MailApiService extends BaseService {
|
||
|
||
/*
|
||
orderId:订单id
|
||
to:邮件接受方account_id
|
||
content: 邮件正文
|
||
attachments: 邮件附件
|
||
[
|
||
{
|
||
"itemid": 0, //道具id
|
||
"itemnum": 0, //道具数量
|
||
}
|
||
]
|
||
*/
|
||
public function sendSellMail($orderId, $to, $content, $attachments)
|
||
{
|
||
|
||
}
|
||
|
||
/*
|
||
orderId:订单id
|
||
to:邮件接受方account_id
|
||
content: 邮件正文
|
||
attachments: 邮件附件
|
||
[
|
||
{
|
||
"itemid": 0, //道具id
|
||
"itemnum": 0, //道具数量
|
||
}
|
||
]
|
||
*/
|
||
public function sendBuyMail($orderId, $to, $content, $attachments)
|
||
{
|
||
|
||
}
|
||
|
||
}
|