nodemailer-sendgrid
nodemailer-sendgrid copied to clipboard
SendGrid transport for Nodemailer
ResponseError: Unauthorized at Request._callback (C:\Users\HP\Documents\personal\node_js\shopping\shopping-app\node_modules\@sendgrid\client\src\classes\client.js:124:25) at Request.self.callback (C:\Users\HP\Documents\personal\node_js\shopping\shopping-app\node_modules\request\request.js:185:22) at Request.emit (node:events:390:28) at Request. (C:\Users\HP\Documents\personal\node_js\shopping\shopping-app\node_modules\request\request.js:1154:10) at Request.emit (node:events:390:28) at IncomingMessage. (C:\Users\HP\Documents\personal\node_js\shopping\shopping-app\node_modules\request\request.js:1076:12) at Object.onceWrapper (node:events:509:28) at IncomingMessage.emit (node:events:402:35) at endReadableNT (node:internal/streams/readable:1343:12) at...
the last section on the readme says i could pass `templateId` which refers to the sendgrid templateId but does not work in the code? i.e i wan to do something...
This isolates the SendGrid MailService used inside the Transport class, to prevent the transport class using the global SendGrid MailService, allowing multiple Transports to use multiple MailServices with different API...
As the title describes, if using multiple transports with different API keys it's possible for the wrong API key to be sent as it just grabs one from the transport...
This adds typescript type definitions for this package.
Recently had issues with this. Turns out sendgrid uses 'value' instead of 'content' in the content array to store values. In addition the require the content array to be a...
```ts {... attachments: [ { filename: filename, content: file(), }, ], } ``` file is `()=>ReadStream` from `fs`. Nodemailer documentation in example section for attachments there is example using stream....
Packages used: ```nodemailer-sendgrid v.1.0.3``` ```nodemailer v.4.7.0``` @andris9 I understand that this is setup such that all attachments are normalized to base64 strings. The issue I am running into is that...
Each time I start my server, I have a warning: ``` (node:1537) [DEP0040] DeprecationWarning: The `punycode` module is deprecated. Please use a userland alternative instead. ``` And it seems to...