This commit is contained in:
aozhiwei 2024-06-04 16:08:16 +08:00
parent 117772cfc5
commit 1f3e9ec5ad

View File

@ -4,12 +4,34 @@ namespace services;
class MailApiService extends BaseService {
public function sendSellMail($to)
/*
to邮件接受方account_id
content: 邮件正文
attachments: 邮件附件
[
{
"item_id": 0, //道具id
"item_num": 0, //道具数量
}
]
*/
public function sendSellMail($to, $content, $attachments)
{
}
public function sendBuyMail($to)
/*
to邮件接受方account_id
content: 邮件正文
attachments: 邮件附件
[
{
"item_id": 0, //道具id
"item_num": 0, //道具数量
}
]
*/
public function sendBuyMail($to, $content, $attachments)
{
}