ethAccount


Back to API doc top page.

Click here for a complete list of operations.

ValidateEmail

Send test email to specified email addresses (separated by ;)

This method will block until the email sending task succeeds or returns detailed error message.

POST /ethAccount.asmx/ValidateEmail HTTP/1.1
Host: mytaglist.com
Content-Type: application/json; charset=utf-8
Content-Length: length

{
    "emails":string
    "send_test_email":boolean
}
HTTP/1.1 200 OK
Content-Type: application/json; charset=utf-8
Content-Length: length

{
    d:[
        d:{
            "email":string
            "success":boolean
            "error":string
            "solution":string
        },
        d:{
            "email":string
            "success":boolean
            "error":string
            "solution":string
        },
        ...
    ]
}