For the complete documentation index, see llms.txt. This page is also available as Markdown.

Mailing Address Fields

Salesforce mailing address fields

Salesforce “address” fields are compound fields. They bundle multiple values into one field.

Use case

You need to show a customer’s mailing address in a template or document.

Examples:

  • Emails (transactional and marketing)

  • PDFs / generated letters

  • Portals and customer-facing UIs

Problem

Compound address fields (for example, MailingAddress, BillingAddress, ShippingAddress) are convenient to store, but they’re often hard to format.

  • You can’t reliably control line breaks and punctuation.

  • Styling can be inconsistent across channels.

  • Parsing the combined value back into parts is fragile.

Salesforce details: https://developer.salesforce.com/docs/atlas.en-us.api.meta/api/compound_fields_address.htm

Solution

Use the individual address components in your template and format them yourself.

Typical components:

  • Street

  • City

  • State/Province

  • Postal Code

  • Country

In Salesforce objects, these usually appear as field pairs like:

  • MailingStreet, MailingCity, MailingState, MailingPostalCode, MailingCountry

Format and place these fields in the order your audience expects. This gives you consistent rendering and full control over layout.

Last updated

Was this helpful?