You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using this library in Node.js and just made four requests in quick succession, all to the same email address and with the same body. To my surprise, only the first one arrived. Why is this happening? Is this how the library works? I would like to know more, as I understand that if this endpoint were used frequently in my application, there could be emails that wouldn't be generated
This is the body of my request; as you can see, it is very simple:
{
"subject": "Example subject",
"to": ["[email protected]"],
"body": "<h1>Hello, World!</h1><p>This is an email body in HTML format.</p>"
}
The text was updated successfully, but these errors were encountered:
I think I understand. If I send the same body to the same email address, the second email won't be sent, right? Since the previous one sent is exactly the same. Can you confirm this?
I'm using this library in Node.js and just made four requests in quick succession, all to the same email address and with the same body. To my surprise, only the first one arrived. Why is this happening? Is this how the library works? I would like to know more, as I understand that if this endpoint were used frequently in my application, there could be emails that wouldn't be generated
This is the body of my request; as you can see, it is very simple:
The text was updated successfully, but these errors were encountered: