You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mvfront-react/functions/test/test.ts

17 lines
216 B

console.log(__dirname)
const send = async (event) => {
/**
* Send a mail using Mailgun
*/
return {
statusCode: 405,
body: __dirname,
headers: {Allow: 'POST'},
};
};
exports.handler = send