Giter Site home page Giter Site logo

Comments (3)

ibalosh avatar ibalosh commented on July 17, 2024

Hi @vinczebalazs ,

postmark javascript library is only passing through what it gets from Postmark API. Unforunatelly it won't throw an error in this case, since it's the way Postmark API works.

With batches, you are sending multiple email messages, it can be more than 10-20, or even 100 of them. Each of these can have a unique error or some might not have errors. Therefore API can't return a unique error to relly on. That is why batch calls would return a 200 http status, but you are able to investigate each response of array of messages being sent and generate custom handling for these.

from postmark.js.

alizbazar avatar alizbazar commented on July 17, 2024

Hi @ibalosh ,

When you mentioned

but you are able to investigate each response of array of messages being sent and generate custom handling for these.

What do you mean? How should one make sure that the messages were actually sent, and if not, for what reason?

from postmark.js.

ibalosh avatar ibalosh commented on July 17, 2024

Hey @alizbazar

when you send a message, using batch endpoints (including sendEmailBatchWithTemplates), the response will be always success from API. The response will be looking something like this

[
    {
        "To": "[email protected]",
        "SubmittedAt": "2019-05-08T15:51:37.3718827-04:00",
        "MessageID": "01bebc61-45d0-4de6-af36-50705f516f3e",
        "ErrorCode": 0,
        "Message": "OK"
    },
    {
        "ErrorCode": 406,
        "Message": "You tried to send to a recipient that has been marked as inactive.\nFound inactive addresses: [email protected].\nInactive recipients are ones that have generated a hard bounce or a spam complaint. "
    }
]

To check whether your email was sent, you can check the response which contains array of all message send responses. In the case above, email was sent to first address, but wasn't to second.

These should be easy to handle. Since for batch sends, response is always an array, API will not throw an error, but rather a response with array of send responses to check.

from postmark.js.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.