How to send email using azure JavaScript function?

1.5k Views Asked by At

its my index.js file code.which i have taken a refrence from this link Javascript Azure Function to send email using SendGrid

module.exports = async function (context, req) {
var message = {
     "personalizations": [ { "to": [ { "email": "[email protected]" } ] } ],
    from: { email: "[email protected]" },        
    subject: "Azure news",
    content: [{
        type: 'application/json',
        value: req.body.to
    }]
};

context.done(null, {message});
};

This is the function.json file code.

 {
  "bindings": [
  {
  "authLevel": "anonymous",
  "type": "httpTrigger",
  "direction": "in",
  "name": "req",
  "methods": [
    "get",
    "post"
  ]
},
{
  "name": "$return",
  "type": "sendGrid",
  "direction": "out",
  "apiKey" : "SG.O1pazBKvS5Ox4YExYCY...",
  "to": "[email protected] ",
  "from": "[email protected]",
  "subject": "SendGrid output bindings"
 }
]
}

This is root directory local.setting.json file.

 {
  "IsEncrypted": false,
  "Values": {
  "AzureWebJobsStorage": "",
  "FUNCTIONS_WORKER_RUNTIME": "node",
  "SENDGRID_API_KEY": "SG.O1pazBKvS5Ox4YExYCY...."
 }
}

This is root directory host.json file

{
 "version": "2.0",
 "extensions": {
  "sendGrid": {
    "from": "Azure Functions <[email protected]>"
   }
  }
 }

Following error i am getting in the console. Also , what is the correct way to send this email.? Reference taken for configuration file https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-sendgrid enter image description here

1

There are 1 best solutions below

0
On

Looks like you don't have the binding extension installed. You could either

{
  "version": "2.0",
  "extensionBundle": {
    "id": "Microsoft.Azure.Functions.ExtensionBundle",
    "version": "[1.*, 2.0.0)"
  },
  "extensions": {
    "sendGrid": {
      "from": "Azure Functions <[email protected]>"
    }
  }
}
  • Install the function extension using the dotnet CLI (Would need .NET Core installed locally)
dotnet add package Microsoft.Azure.WebJobs.Extensions.SendGrid --version 3.0.0