As long as you provide Contiguity a valid token, and provide valid inputs, sending emails will be a breeze. Various email parameters can be configured in the Console such as tracking, custom domains, and more.
Contiguity supports, but not yet in the SDK, custom emails from your own domain. This is coming in December 2024.
Copy
// HTML emailconst object = { to: "example@example.com", from: "Contiguity", subject: "My first email!", html: "<b>I sent an email using Contiguity</b>"}await client.send.email(object)
Or, to send a plain text email:
Copy
// Plain text emailconst object = { to: "example@example.com", from: "Contiguity", subject: "My first email!", text: "I sent an email using Contiguity"}await client.send.email(object)