mirror of
https://github.com/strapi/strapi.git
synced 2025-08-13 11:17:42 +00:00
13 lines
219 B
JavaScript
13 lines
219 B
JavaScript
'use strict';
|
|
|
|
const getProviderConfig = () => {
|
|
return strapi.plugins.email.config;
|
|
};
|
|
|
|
module.exports = {
|
|
getProviderConfig,
|
|
async send(options) {
|
|
return strapi.plugins.email.provider.send(options);
|
|
},
|
|
};
|