Skip to content

Instantly share code, notes, and snippets.

@NikhilNanjappa
Created February 12, 2022 13:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save NikhilNanjappa/7b6b6b42bab880a95fc5cb4938b1531a to your computer and use it in GitHub Desktop.
Save NikhilNanjappa/7b6b6b42bab880a95fc5cb4938b1531a to your computer and use it in GitHub Desktop.
Strapi email.js
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