The Team
object contains information related to a Neon Fundraise team.
Availability: The Team
object is available anywhere there may be a team. It is available in most emails, including email blasts and Admin Email Templates, as well as in the defaults of team pages. It is not available in editable areas on the website.
Attributes: The Team
object has the following attributes:
- Team.Name
- Team.Captains
- Team.Member_Count
- Team.Goal_Amount
- Team.Amount_Raised
- Team.Amount_To_Goal
- Team.Fundraising_Page
Team.Name
Returns the team name. Use with string filter natural_language
when using in a sentence to prepend "Team" to team names that don't already have the word in their name:
Team: {{ Team.Name }}
Join {{ Team.Name | natural_language }} today!
If team name is "Awesome Fundraisers", the output will be:
Team: Awesome Fundraisers
Join Team Awesome Fundraisers today!
If team name is "Team Awesome", the output will be:
Team: Team Awesome
Join Team Awesome today!
Team.Captains
Returns an array of captains. Use with an array
filter or iteration
tag to display the desired information. One useful filter that can be used commonly is contact_info
, which displays the full name (or company if first/last aren’t applicable) and email address of each team captain:
For more information, contact:{{ Team.Captains | contact_info }}
For more information, contact:
John Doe, john@doe.com
Jane Doe, jane@doe.com
Team.Member_Count
Returns the number of members on a team.
Team.Goal_Amount
Returns the team's goal amount. Use a money
filter to return the value in a monetary format:
{{ Team.Goal_Amount | money }}
$10,000
Team.Amount_Raised
Returns the amount raised by the team, including donations made to team members and to the team directly. Use a money
filter to return the value in a monetary format:
{{ Team.Amount_Raised | money }}
$9,362
Team.Amount_To_Goal
Returns the difference between the team's total raised and goal amount. Use a money
filter to return the value in a monetary format:
{{ Team.Amount_To_Goal | money }}
$638
Team.Fundraising_Page
Returns a link that directs to the team's fundraising page. This works whether or not the team captain created a custom URL for their team fundraising page.