schm-email-send-papi

(0 reviews)

home

schm-email-send-papi


resources/ca06f0a200b05b2961ab06710000d89-0b5948f7-c7a9-41a1-a44c-3d3a1a4b2ec6.png

Sendmail

Interface description: Sends a message to the specified mailbox
Interface name: emailSend
Request method: HTTP POST form-data

Parameter Description:

Field DescriptionField NameRequiredTypeRemarks
Subject of an emailsubjectYString
Email recipientaddresseeYStringSeparate multiple mailboxes with commas
Cc on emailcarbonCopyNStringSeparate multiple mailboxes with commas
Mail contentcontentNStringIt can be text, HTML and other forms
Mail attachmentsattachmentsNmultipart/form-dataMultiple choices are allowed

Parameter example String

 {
    "subject":"测试主题",
    "addressee":"test1@.com",
    "carbonCopy":"test1@.com",
    "content":"测试内容"
 }

Return result description

descriptionkeytyperemarks
Return messagesMessageStringError or success message

Example of return result

{
    "Message": "success"
}

Reviews