# Create multiple from addresses

You may have messages that should come from different email addresses depending on your use case—onboarding emails from customer success managers, newsletters from a general company address, etc. You can add multiple from addresses to fit your needs.

## Add multiple from addresses[](#add-multiple-from-addresses)

To add a new from address:

1.  Go to *Settings* > *Workspace Settings* and select [**Email**](https://fly.customer.io/workspaces/last/settings/actions/email/sending_domains).
2.  Find the sending domain you want to add the new address to and click **Add from address**.
    
    [![new_from_address.png](https://docs.customer.io/images/add-from-address.png)](#5357cfbe25e7372c95f6273c51674ed5-lightbox)
    
3.  Enter the sender name and email address.

After you add a new from address and the [domain is verified](/journeys/authentication), you can pick your new address using the drop-down next to the *From* label when creating an email.

[![image.png](https://docs.customer.io/images/email_multile-from-addresses_composer-dropdown.png)](#b7e11aed5756739b1b28895f995c2933-lightbox)

## Add dynamic from addresses[](#dynamic-from-addresses)

You may want to set a dynamic from address so your emails come from a person’s dedicated account manager, or someone that your audience expects to receive emails from.

For example, if you assign an `account_manager` to your people, you can set a dynamic from address to use the account manager email address using liquid like `{{customer.account_manager}}`.

To set a dynamic from address:

1.  Go to *Settings* > *Workspace Settings* and select [**Email**](https://fly.customer.io/workspaces/last/settings/actions/email/sending_domains).
2.  Scroll to the bottom of the page and locate *Dynamic From Addresses*. Click **Add from address**.
    
    [![the bottom of the workspace settings email page where dynamic from addresses are listed](https://docs.customer.io/images/dynamic-from-address.png)](#fbfc2c5a239d954ed761e536e79f1a1d-lightbox)
    
3.  Enter the display name and email address. Use liquid for the email address, determining the attribute or event property representing the from address when you select that sender (like `{{customer.account_manager}}`).

You may also want to use a liquid `if` statement to **set a fallback**, in case people in your workspace don’t have the attribute representing your dynamic from address.

```fallback
{% if customer.account_manager != blank %}{{ customer.account_manager }}{% else %}accounts@example.com{% endif %}
```

 Want to learn more?

Check out these [tips and tricks](/journeys/assign-a-personal-support-rep) on using liquid with email addresses.

## Check where from addresses are used[](#see-where-from-addresses-are-being-used)

If you’d like to see where a specific from address is being used, search for it in your [Message Library](/journeys/message-library).

This is a dedicated page in your workspace where you can locate specific templates by searching on keywords, as well as locate all message actions and broadcasts that are using a specific from address. You can also filter the results based on whether the message is actively sending or drafted.