POST api/hotel/agentsys/invoice/sendemail
邮件发送
Request Information
URI Parameters
None.
Body Parameters
TC_InvoiceEmailRQContract| Name | Description | Type | Additional information | 
|---|---|---|---|
| lang | string | 
                             None.  | 
                |
| invoiceid | integer | 
                             None.  | 
                |
| emaillist | Collection of string | 
                             None.  | 
                |
| templatetype | string | 
                             None.  | 
                |
| authuser | 
                         用户身份信息  | 
                    TC_UserContract | 
                             None.  | 
                
Request Formats
application/json, text/json
            Sample:
        
{
  "lang": "sample string 1",
  "invoiceid": 2,
  "emaillist": [
    "sample string 1",
    "sample string 2"
  ],
  "templatetype": "sample string 3",
  "authuser": {
    "userid": "sample string 1",
    "password": "sample string 2"
  }
}
        application/x-www-form-urlencoded
            Sample:
    
        
Response Information
Resource Description
邮件发送
ReturnResult| Name | Description | Type | Additional information | 
|---|---|---|---|
| code | 
                         状态码:100成功,其他自定义  | 
                    integer | 
                             None.  | 
                
| message | 
                         提示消息  | 
                    string | 
                             None.  | 
                
Response Formats
application/json, text/json
            Sample:
{
  "code": 1,
  "message": "sample string 2"
}