sendgrid-nodejs icon indicating copy to clipboard operation
sendgrid-nodejs copied to clipboard

The Official Twilio SendGrid Led, Community Driven Node.js API Library

Results 89 sendgrid-nodejs issues
Sort by recently updated
recently updated
newest added

I've been getting this error when i try to send emails. So i did a set up on digital ocean droplet, installed nginx and every other thing i need. API...

# Fixes # - Allows seralization for query params. Info taken for this [forum](https://stackoverflow.com/questions/49944387/how-to-correctly-use-axios-params-with-arrays) Before fix: `/v3/marketing/integrations?ids[]=id1&ids[]=id2` After: `/v3/marketing/integrations?ids=id1&ids=id2` -- Doing this change because it was failing when testing SDK...

# Fixes # Related PR: https://github.com/sendgrid/sendgrid-nodejs/pull/1327 fix: Support 204 response in axios ### Checklist - [x] I acknowledge that all my contributions will be made under the project's license -...

An example pseudo code: ``` import { classes as sgClasses } from "@sendgrid/helpers"; const Mail = sgClasses.Mail; const Personalization = sgClasses.Personalization; const samplePersonalization = new Personalization(); samplePersonalization.setTo("[email protected]"); samplePersonalization.addSubstitution("name", "Sample"); samplePersonalization.setSubstitutionWrappers(["%%",...

Hello. Day 1 with sendGrid. Weekend warrior when it comes to coding. I have followed the simple instructions and have created a contactUs.js file which looks like this import sgMail...

Hello community, I have this payload in nodeJS and I am using `@sendgrid/mail/7.6.1` library (node v.18.15.0): ``` { "from": "[email protected]", "to": "[email protected]", "templateId": "template-id", "personalizations": [ { "to:": [ {...

The Mail Send v3 API supports JSON, but on a successful request the response body comes back empty, which is bad practice for JSON endpoints. What happens is: ``` const...

# Fixes # Fix the `qsStringifyOptions` option example in USAGE.md. Use the `qs` package together with the `paramsSerializer` option instead. ### Checklist - [x] I acknowledge that all my contributions...

mailparser `2.3.4` (from +4 years ago) relies on an old version of nodemailer which is vulnerable to [CVE-2020-7769](https://nvd.nist.gov/vuln/detail/CVE-2020-7769) NIST base score of 9.8. New versions of mailparser use an updated...

As mentioned in the title it happens that emails to Outlook accounts (e.g @hotmail.it or @hotmail.com) are getting delayed for no apparent reason. Delays go from some minutes to hours,...