Shypyard Email

Shypyard Email service

You can send internal emails. Emails will be sent from an app specific address<appID>.mail.shypyard-app.com

const shypyard = libs.shypyard.get();

await shypyard.sendEmail({
  to: ['test@example.com'],
  subject: 'TEST text only EMAIL',
  text: 'This is a test email okay',
  html: '<span>Tihs is a text email okay</span>',
});

Last updated