Get a Free WhatsApp Business Account – Includes Onboarding, API Access & Sandbox. Apply Now!


Sample Code For Send Email in Node.Js

Sending Email using Authkey APIs is a breeze and lightning fast. You can simply pass the message body, message sender, mobile number & authkey in the API request to send sms instantly.

Node.js Sample Code For Sending Email



var request = require("request");
var options = { method: 'GET',
url: 'https://api.authkey.io/request',
qs: 
{ authkey: 'YourAuthKey',
email:RecepientEmail.
mid=1001 },
};

request(options, function (error, response, body) {
if (error) throw new Error(error);

console.log(body);
});

Sending SMS using Authkey APIs is a breeze and lightning fast. You can simply pass the message body, message sender, mobile number & authkey in the API request to send sms instantly.