Pierre Noël 83f847f359 change config format
Signed-off-by: Pierre Noël <petersg83@gmail.com>
2020-05-14 18:11:24 +02:00

17 lines
312 B
JavaScript

'use strict';
/**
* Email.js controller
*
* @description: A set of functions called "actions" of the `email` plugin.
*/
module.exports = {
send: async ctx => {
let options = ctx.request.body;
await strapi.plugins.email.services.email.send(options);
// Send 200 `ok`
ctx.send({});
},
};