Fork from:
https://github.com/GoogleCloudPlatform/nodejs-docs-samples/tree/master/functions/sendgrid
gcloud functions deploy sendgridEmail --trigger-http
curl -X POST "https://YOUR_REGION-YOUR_PROJECT_ID.cloudfunctions.net/sendgridEmail?sg_key=send_grid_api_key" --data '{"to":"email_dest","from":"email_from","subject":"yoursubject","body":"yourbody"}' --header "Content-Type: application/json"
-
Install dependencies:
npm install
-
Run the tests:
npm test