Liquid syntax
  • Welcome
  • Introduction
    • What is Liquid syntax?
    • Liquid operators
    • Liquid objects
    • Liquid tags
    • Liquid filters
    • Best practices
  • Information
    • Attributes
    • Consolidation
    • Custom fields
    • Date filter reference
    • Deal pricing
    • Special items
  • PDF renderer
    • PDF document limitations
  • General
    • Address detail
    • Attachments
    • Company
    • Emails
    • Links
    • Phones
    • Store
  • Activity
    • Activity
  • Inventory Check
    • Inventory check (stock check)
    • Inventory check items (stock check items)
  • Invoices & Credits
    • Invoice
    • Invoice items
    • Invoice transactions
    • Invoice taxes
  • Opportunities
    • Opportunity
    • Opportunity items
    • Opportunity item assets
    • Opportunity item surcharges
    • Opportunity costs
    • Opportunity return item assets
    • Consolidated opportunity items
    • Consolidated opportunities
  • People & Organizations
    • Contact
    • Organization
    • User
    • Vehicle
    • Venue
  • Products
    • Product
    • Product group
    • Charging period
    • Product accessories
    • Product assets
    • Stock level
  • Project
    • Project
  • Purchase orders
    • Purchase order
    • Purchase order items
  • Quarantine
    • Quarantine
  • Service
    • Service
  • Testing & inspection
    • Inspection results
    • Inspection result tasks
Powered by GitBook
On this page
  • address
  • type_id
  • type_name

Was this helpful?

  1. General

Emails

The email object contains information about email addresses for a record.

PreviousCompanyNextLinks

Last updated 4 years ago

Was this helpful?

You may add as many email addresses as you like when creating organization, contacts, users, vehicles, or venues.

Using the email object against the organization, contact, user, vehicle, or venue object will return the first work email address associated with the record. For example, from an opportunity document:

{{ customer.email }}

Use the emails object to return all email addresses.

{% for email in customer.emails %}
  {{ email.address }}
{% endfor %}

address

Returns email addresses stored against a record.

Input

{% for email in order.store.emails %}
  {{ email.address }}
{% endfor %}

Output

help@current-rms.com

type_id

Returns the email address type ID.

The ID is an internal reference for a value entry. It's not exposed in our web interface.

ID

Email type

4001

Work

4002

Home

Input

{% for email in order.store.emails %}
  {{ email.type_id }}
{% endfor %}

Output

4001

type_name

Returns the email address type name.

  • Home

  • Work

Input

{% for email in order.store.emails %}
  {{ email.type_name }}
{% endfor %}

Output

Work
People & Organizations