Shicosera Send
Coming soon

Something new is on its way.

Shicosera Send is email infrastructure for developers. Connect your domain and send transactional emails from your app through a simple API.

  • Custom domains
  • Simple API
  • Webhooks
  • Email logs
send.ts
import { Shicosera } from "shicosera";
 
await shicosera.emails.send({
from: "hello@example.com",
to: "user@example.com",
subject: "Welcome!",
html: "<h1>Welcome to our app</h1>"
});