FormsLite.io Docs
  • Introduction
  • Getting Started
    • Setup
    • Settings
      • Custom Subject
      • Success Page
      • Custom Redirect
      • Captcha and Spam Protection
        • Honeypot
        • hCaptcha
        • Report Spam
      • Custom Reply-to Email
      • Custom From Name
    • Plus Features
      • Add CC Emails
      • Autoresponder
      • Notion Database Integration
      • Webhooks
      • Domain Whitelisting
    • Examples
  • Guides
    • HTML Only
    • HTML + JavaScript
    • Alpine.js
    • Svelte
    • Vue.js
    • React
Powered by GitBook
On this page
  1. Getting Started
  2. Plus Features

Add CC Emails

Overview

With FormsLite.io, you can add CC (carbon copy) email addresses to your form submissions. Please note that this is a PLUS feature and requires an active membership.

Adding a Single CC Email

To add a single CC email address, use a hidden input field with the name "cc_emails" and the desired email address as the value.

Example Code for Single CC Email

<input type="hidden" name="cc_emails" value="partner@example.com" />

Adding Multiple CC Emails

If you need to add multiple CC email addresses, separate them with a semicolon (;).

Example Code for Multiple CC Emails

<input type="hidden" name="cc_emails" value="partner@example.com;accounts@example.com" />

Full Example with CC Email

htmlCopy code<form action="https://api.formslite.io/submission" method="POST">
    <input type="hidden" name="access_key" value="ACCESS_KEY">
    <input type="hidden" name="cc_emails" value="partner@example.com;accounts@example.com">
    <input type="text" name="name" required>
    <input type="email" name="email" required>
    <button type="submit">Submit Form</button>
</form>

By including the hidden input field for "cc_emails", you can ensure that additional recipients are copied on the notification emails. This feature is available to PLUS users of FormsLite.io.

PreviousPlus FeaturesNextAutoresponder

Last updated 11 months ago