email

Learn how to use the email function in Notion formulas.

New in Formulas 2.0

The email() function returns the email address of a Person data type.

email(person) email(personProperty.first()) person.email() personProperty.first().email()

If used on a built-in Created By or Last Edited By property, you can use the function directly like prop("Created By").email(). If used on a created Person property, you’ll need to use the first function as well, even if the property is set to a limit of 1.

prop("Assignee").first().email() /* Output: "[email protected]" */

You can also utilise map to return the email address for each person added to the Person property.

prop("Assignees").map(current.email()) /* Output: ["info@collegeinfogeek.com", "ben@collegeinfogeek.com" */
email(prop("Created By")) /* Output: "[email protected]" */ prop("Assignee").first().email() /* Output: "[email protected]" */

Note that the email comes back as plain text, not a link. You would need to use the link function and the mailto: prefix to add the email address.

prop("Last Edited By") .email() .link("mailto:" + prop("Last Edited By").email()) /* Output: "[email protected]" (as a link) */

About the Author

My name is Thomas Frank, and I'm a Notion-certified writer, YouTuber, and template creator. I've been using Notion since 2018 to organize my personal life and to run my business and YouTube channel. In addition to this formula reference, I've created a free Notion course for beginners and several productivity-focused Notion templates. If you'd like to connect, follow me on Twitter.

🤔 Have an UB Question?

Fill out the form below and I’ll answer as soon as I can! ~Thomas

🤔 Have a Question?

Fill out the form below and I’ll answer as soon as I can! ~Thomas