Skip to main content
FLO.W 思流Notion Formulas
Back to function index

email

A quick reference for the Notion email function, including syntax, purpose, return value, and examples.

Quick reference

ItemDetails
Functionemail()
CategoryPeople, pages, and variables
Syntaxemail(person)
PurposeGet a person's email
Return valueText

Official example of the email function in the Notion formula editor

Examples and notes

A Person property can be a list, especially when it allows multiple people. A common pattern is:

prop("Assignee").map(current.name()).join("、")
prop("Assignee").map(current.email()).join("、")

If the Person property allows only one person, you can also get the first person first:

prop("Assignee").first().name()

To use these formulas directly in task reminders, project progress, note heatmaps, and reports, continue with FLO.W Notion Template.

Back to function index

Last updated on