Backendless.Messaging.sendHTMLEmail

Hi team.

Trying to send email , but didnt receive it , I dont understand why
Application ID - 470BCED0-1919-8AC5-FF71-6E82E3906C00

When trying it locally with DEV credentials it works.

Using documented API
Backendless.Messaging.sendHTMLEmail(
“TEST”,
“TEST”,
"andrii.seledkov@gmail.com",null);

Hi Andrii

Which SDK do you use? JS, Java or iOS?

Thanks, Vlad

Java

Did you try to pass AsyncCallback as fourth argument for getting any result or error?

And do you have a Pro Installation, not Cloud, right?

When I tried:
AsyncCallback<Void> responder = new AsyncCallback<Void>() {
@Override
public void handleResponse(Void response) {
LOGGER.info("[ASYNC] email has been sent");
}

        @Override
        public void handleFault(BackendlessFault fault) {
            LOGGER.info("error sending email - " + fault.getMessage());
        }
    };


    Backendless.Messaging.sendHTMLEmail(
            subject,
            body,
            email, responder);

The method handleFault was called with next message :You have no permission to thread manipulation

Do you use the code inside Business Logic, and do you have a Pro Installation?

And do you have a Pro Installation, not Cloud ? - did not get you

I mean do you have your application here http://develop.backendless.com

I’m asking because I can’t find app with ID 470BCED0-1919-8AC5-FF71-6E82E3906C00 what you provided

Solved

what was the issue?