game2006api/webapp/services/MailApiService.php
aozhiwei 18a8d9d32e 1
2024-06-04 17:54:53 +08:00

42 lines
762 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 {
/*
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)
{
}
}