game2006api/webapp/services/MailApiService.php
aozhiwei bed78c8a89 1
2024-06-04 16:17:41 +08:00

40 lines
710 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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