Hi there,
I’m trying to create a function using NodeJs and SendGrid. I think I have the code correct, however, I’m getting an error on importing the SendGrid module.
Error [ERR_MODULE_NOT_FOUND]: Cannot find package ‘@sendgrid/mail’ imported from /tmp/index.mjs
Done the usual Googling and searching the community, but I can’t seem to find the solution.
Bring the import like this:
import * as sgMail from '@sendgrid/mail';
package.json looks like this:
{
"name": "sendgrid-sendemail-js-do",
"type": "module",
"main": "main.js",
"dependencies": {
"@sendgrid/mail": "^7.7.0",
"axios": "^1.5.1"
}
}
Managed to successfully get a different function working after working through issue, but this one seems to be wracking my brains!
Any pointers would be appreciated.
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!