Encharge Developers
  • Developer Documentation
  • Getting Started
    • Sending data to your Encharge account
      • Ingest API
      • JavaScript Event Tracking
      • Segment.com Integration
    • Getting Help
  • Sending Emails
    • Personalizing Emails with Liquid
    • Email Deliverability
  • Encharge API
  • API Documentation
  • Transactional Email API
    • Overview
      • Pricing
    • Benefits and Features
    • Technical Overview
    • Send an email from template
    • Send custom HTML email
    • Send a plain-text email
    • Authentication
    • Reference
    • Sending to unsubscribed contacts
  • Advanced
    • Activity Stream
Powered by GitBook
On this page

Was this helpful?

  1. Transactional Email API

Send an email from template

PreviousTechnical OverviewNextSend custom HTML email

Last updated 3 years ago

Was this helpful?

To send an email from a prepared template, set the template parameter to the template name.

To create a new email template, open the in Encharge and click the + icon in the lower-left. You can skip this step if you've already created your email template.

If you have previously created the recipient in Encharge, you can use personalization tags, for example {{ person.firstName }} in your email's text. See what fields you can use in .

const axios = require('axios');

// Send a POST request
axios({
  method: 'post',
  url: 'https://api.encharge.io/v1/emails/send?token=yourAPIKey',
  data: {
    "to": "recipient@example.com",
    "template": "Welcome Email",
    /**
   * Optionally, you can include a dictionary of fields to be replaced.
   * For example, passing
   * `{ "loginURL": "https://app.encharge.io/login/3n2l3ad99"}`
   * will replace
   * `{{ loginURL }}` in the email template.
   */
    "templateProperties": {
      "loginURL": "https://app.encharge.io/login/3n2l3ad99"
    }
  }
});

If you provide the from parameter, it will overwrite the sender address specified in the template.

To use the template ID instead of the template name, pass a number to the template parameter above. Finding the template ID is easy - open the template in the Encharge app. Look at the URL to find the email ID. In the following URL , the template ID is 123.

Emails section
Person Fields
https://app.encharge.io/emails?email=123