Quick Start

Test your first email with Mailcatch


Create a inbox.

Mailcatch uses inboxes to give you a workspace for each of your applications. You may create as many inboxes as you want and organize them however you want.

To get started, create a inbox by clicking on the "Create Inbox" button in the dashboard.

Send your first email

cURL
curl \
  --url 'smtp://sandbox-smtp.mailcatch.app:2525' \
  --user 'user:pass' \
  --mail-from from@example.com \
  --mail-rcpt to@example.com \
  --upload-file - <<EOF
  From: Foo Bar <from@example.com>
  To: Mailcatch Inbox <to@example.com>
  Subject: You are awesome!
  Content-Type: multipart/alternative; boundary="boundary-string"
 
  --boundary-string
  Content-Type: text/plain; charset="utf-8"
  Content-Transfer-Encoding: quoted-printable
  Content-Disposition: inline
 
  Congrats for sending test email with Mailcatch!
 
  If you are viewing this email in your inbox – the integration works.
  Now send your email using our SMTP server and integration of your choice!
 
  Good luck! Hope it works.
 
  --boundary-string
  Content-Type: text/html; charset="utf-8"
  Content-Transfer-Encoding: quoted-printable
  Content-Disposition: inline
 
  <!doctype html>
  <html>
    <head>
      <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    </head>
    <body style="font-family: sans-serif;">
      <div style="display: block; margin: auto; max-width: 600px;" class="main">
        <h1 style="font-size: 18px; font-weight: bold; margin-top: 20px">Congrats for sending test email with Mailcatch!</h1>
        <p>If you are viewing this email in your inbox – the integration works.</p>
        <img alt="Inspect with Tabs" src="https://assets-examples.s3.eu-central-1.amazonaws.com/integration-examples/welcome.png" style="width: 100%;">
        <p>Now send your email using our SMTP server and integration of your choice!</p>
        <p>Good luck! Hope it works.</p>
      </div>
    </body>
  </html>
 
  --boundary-string--
  EOF

More examples! 🤩