Skip to content

Instantly share code, notes, and snippets.

@NikhilNanjappa-zz
Created September 1, 2018 19:32
Show Gist options
  • Save NikhilNanjappa-zz/3a580d331d5e867a5e998f937ad9fd7c to your computer and use it in GitHub Desktop.
Save NikhilNanjappa-zz/3a580d331d5e867a5e998f937ad9fd7c to your computer and use it in GitHub Desktop.
await strapi.plugins['email'].services.email.send({
to: ctx.request.body.to,
from: 'your@address.com',
replyTo: 'your@address.com',
subject: 'My message',
text: 'Text',
html: '<h1>Text</h1>'
}, config);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment