New in Chargebee: Explore Reveal and understand your payment performance end-to-end.Try Now
Docschargebee docs
HomeBillingPaymentsRevRecGrowthReveal
Support

Product Updates


  • Release Notes

Getting Started


  • Overview
  • Chargebee Billing Data Centers
  • Object Relationship Model
  • Understanding Sites
  • Chargebee Tech Glossary
  • Articles and FAQ

Implementing Chargebee


  • Implementation Guide
  • Go-live Checklist
  • Articles and FAQ

AI in Chargebee


  • Chargebee Agents
  • Chargebee Copilot
  • Chargebee MCP Server (Model Context Protocol)

Developer Resources


  • Developer Resources Overview
  • Articles and FAQ

Product Catalog


  • Product Catalog Overview
  • Coupons
  • Articles and FAQ

Subscriptions


  • Working with Subscriptions
  • Billing
  • Orders
  • Articles and FAQ

Customers


  • Managing Customers
  • Account Hierarchy
  • Email Notifications
  • Branding
  • Configure Multiple Languages
  • Articles and FAQ

Entitlements


  • Entitlements Overview
  • Features Overview
  • Feature Management
  • Managing Product Entitlements
  • Subscription Entitlements
  • Customer Entitlements
  • Grandfathering Entitlements
  • Articles and FAQ

Usage Based Billing


  • Understanding Usages
  • Setting up Usage Based Billing
  • Usage Alerts
  • Metered Billing
  • Articles and FAQ

Chargebee CPQ


  • Chargebee CPQ
  • Chargebee CPQ for Salesforce
  • Chargebee CPQ for HubSpot

Invoices, Credit Notes, and Quotes


  • Invoices
  • Credit Notes
  • Quotes [Legacy]
  • Transactions
  • Articles and FAQ

Taxes


  • Overview
  • Configuring Taxes
  • Country-specific Taxes
  • Articles and FAQ

Hosted Capabilities


  • Overview
  • Hosted Checkout
  • Hosted Self-Serve Portal
  • Hosted Pages Features
  • Additional Hosted Pages
  • Payment Components
  • Pricing Table
  • Managing Payments with Chargebee.js
  • Mobile-Optimized Hosted Pages
  • Articles and FAQ

Site Configuration


  • Users & Roles
  • Custom Fields & Metadata
  • Approvals
  • Mandatory Fields
  • File Attachments & Comments
  • Advanced Filter Options
  • Multicurrency Pricing
  • Multi-decimal Support
  • Configuring Reason Codes
  • Events and Webhooks
  • API Keys
  • Time Zone
  • Time Machine
  • Transfer Configurations
  • Articles and FAQ

Multi Business Entity


  • Multi Business Entity Overview
  • Customer Transfer Overview
  • Articles and FAQ

Mobile Subscriptions


  • Overview
  • Omnichannel Subscriptions
  • Omnichannel One-Time Orders
  • Mobile Subscriptions (Legacy)

Reports and Analytics


  • RevenueStory
  • Home Dashboard
  • Frequently Asked Questions
  • FAQs for Classic Reports Sunset
  • Articles and FAQ

Integrations


  • Sales
  • Customer Support and Success
  • Finance
  • Tax
  • eInvoicing
  • Marketing
  • Stitch
  • Collaboration
  • Contract Management
  • Ecommerce Management
  • Articles and FAQ

Data Privacy & Security


  • Two Factor Authentication
  • SAML Single Sign-On
  • System for Cross-Domain Identity Management (SCIM)
  • EU-GDPR
  • Consent Management
  • Personal Data Management
  • Compliance Certificates
  • HIPAA Guidelines
  • PCI Recommendations and Integration Types
  • Articles and FAQ

Data Operations


  • Bulk Operations
  • Migration
  • Articles and FAQ
  1. Billing
  2. Customers
  3. Articles and FAQ
  4. Mail merge fields
  1. Billing
  2. Customers
  3. Articles and FAQ
  4. Mail merge fields

How to create the Merge(variable) fields in Chargebee?

Scope

How to create a custom payment update URL in Chargebee?

Can I use the mail merge fields with the API?

How to define conditions using Mail merge fields?

Summary

Chargebee allows you to personalize the content that is customer-facing like Email Notifications, Checkout and Portal, Invoices, and Credit Notes using the Mail Merge Fields.

Note

You cannot use the mail merge fields via API. Instead, you can retrieve data using the standalone codes used for payment collection such as Invoice Collection, Update Payment Method.etc.

Solution

Displayed below are the images that guide you on where you can configure the Merge Fields in the UI,

  1. **Email Notifications:**To use Merge Fields for your Email Notifications, Go to Configure Chargebee > Email Notifications > Select the template > Click on View all Merge Fields and select one notification to obtain the merge field.
image
  1. Checkout & Portal: To display the Return Variables after Checkout you can use the Show/Hide Mergevars option from the Hosted page Redirect URLs when you create a plan or use the Edit Plan option to make changes to an existing plan.
image
  1. Customize Invoices, Credit Notes, and Quotes:

To customize payment instructions for Quotes, Invoices, and Credit Notes Go to Configure Chargebee > Settings > Customize Invoices, Credit Notes, and Quotes and add the payment details for the mode of payment

image

Mail Merge Usage Conditions

Display Content when Field has a Value

If the field contains a value, then the content inside the block will be displayed. '#' indicates that the condition to be checked has to be true. '/' indicates the end of the field block.

Dear Customer, `#plan.setup_cost` Your setup cost is `plan.setup_cost`. `/plan.setup_cost` Thank you for your purchase.

RESULT:

Dear Customer, Your setup cost is $12.50. Thank you for your purchase.

If the mail merge field does NOT contain a value, the content will be ignored. For instance, on the above example if the plan.setup_cost does not contain a value, then "Your setup cost is $12.50." will be completely ignored.

Display Content when the Field Has a Specific Value

If the field contains a value, then the content entered within the block is displayed, like plan name, addon name, etc. Else it will be ignored.

{{#plan.id = PREMIUM-USD-Monthly}} Since you are in basic plan you have only email support. {{/plan.id = PREMIUM-USD-Monthly}}

RESULT:
Since you are in basic plan you have only email support.

Display Content when the Field Does not Have a Specific Value

If the field is empty or does not have a specific value, the content entered within the block is displayed. " ^ " indicates that the condition specified has to be false.

To display content when a field does not have the specified value:

`^plan.name = enterprise` Upgrade to the enterprise plan and enjoy 24/7 phone support. `/plan.name = enterprise`

RESULT:
Upgrade to the enterprise plan and enjoy 24/7 phone support.

Enumerated String

Enumerated string refers to values, like subscription statuses (active, canceled, trial...), invoice statuses (paid, not paid...), etc.

SAMPLE #1

`#card.status = expiring` Your card is about to expire. `/card.status = expiring`

RESULT:
Your card is about to expire.

List Values

Used to display a list of items (objects that may have multiple entries in the subscription) such as addons, coupons, etc.

`#addons` Addon Name : `addon.name` Addon Price : `addon.price` `/addons`

RESULT:

Addon Name: Support Plan Addon Price: $9.99 Addon Name: License Addon Price: $19.99

Reformat Date and Time Values

You can use 'format' and 'timezone' attributes along with the timestamp fields, such as subscription.trial_end to change the default format of the date and time or convert it to a specific timezone. Click here for more details.

You signed up for your subscription on `subscription.created_at | format : dd-MMM-yyyy hh:mm:ss z`

RESULT:

You signed up for your subscription on 14-May-2016 11:07:00 UTC

To access all lists of Mergevar fields use this sample format link: https://yoursite/notifications/mergevars. The yoursite is your Chargebee site name, for example, https://flipbook-test/notifications/mergevars. Note that, you will be able to access this link only if you have logged in to your site.

Related Articles

Is there a way to include a link to update the payment details in the email notifications (V1)?
Is it possible for me to send different email templates for dunning retries with the V1 emails?
How to add Plan/Addon/Coupon specific contents in the Invoice Receipt email?
Is it possible for me to send different email templates for invoice due reminders with the V2 emails?
Is there a way to include a link to update the payment details in the email notifications (V2)?
How can I send payment link only to the customers subscribed without payment method?
The refund amount in 'refund initiated' email shows value as zero
How to add discounted plan price value in email notification?
Can I send a customised note on the email on subscribing to a particular plan?
How to use Merge(variable) Fields in Email notifications?
How to change the date format of the mail merge fields in emails?
Renewal reminders mergevar-"Estimated charge on renewal"

Show more

Was this article helpful?