Smollbite Icon
SmollBites
Email logo

Emailer

Need to be notified via email? No worries!

Step 1: Create an emailer

Go to the Create Page and enter your email address, this will return a emailer link that you'll be use for sending email

Step 2: Sending of email

Perform a POST request to upload_url with fields. Here's a snippet below.

javascript
fetch('https://emailer.smollbites.com/CODE/send', {
  method: "POST",
  headers: {
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
    fields: {
      first_name: "Juan",
      middle_name: "Dela",
      last_name: "Cruz",
    }
  })
})

The /send endpoint is required to have at least one key-value pair inside the "field" object.

In this example the first_name will also serve as the label FIRST NAME in the email.

The result of this email will look like this:

Ready to create?