Need to be notified via email? No worries!
Go to the Create Page and enter your email address, this will return a emailer link that you'll be use for sending email
Perform a POST request to upload_url with fields. Here's a snippet below.
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: