You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi I am using mailgun-js 0.21.0.
var api_key = 'pubkey-XXXXXXXXX';
var domain = 'XXXXXXXXXXXX';
var mailgun = require('mailgun-js')({apiKey: api_key, domain: domain});
Hi I am using mailgun-js 0.21.0.
var api_key = 'pubkey-XXXXXXXXX';
var domain = 'XXXXXXXXXXXX';
var mailgun = require('mailgun-js')({apiKey: api_key, domain: domain});
mailgun.parse(
[ '[email protected]', '[email protected]', '[email protected]' ],
function (error, body) {
if (error) {
console.log(error)
} else {
console.log(body);
}
}
);
result:
{ parsed: [ '[email protected]' ], unparseable: [] }
The text was updated successfully, but these errors were encountered: