There are various miscellaneous Liquid items that are available where they are applicable. Below is a list of Liquid objects, arrays and attributes that aren't included elsewhere.
On this page:
-
Links
-
Activate_Page_Link
-
Create_Account_Link
-
Confirm_Reg_Link
-
Confirm_Registration_Link
-
Recommitment_Link
-
Reset_Password_Link
-
Verify_Email_Link
- Fundraiser_PDF_Link
-
-
Amounts
- Total_Eligible_Amount
- Total_Eligible_Amount_Without_Fees
-
Attendee_Count
-
Attendees_Total
- Coupon_Code
- "now"
-
Registered_Via_Social
- User_Personal_Message
Activate_Page_Link
Returns a link for a fundraiser invited by a registrant through Detailed Registration to confirm their registration and activate their page. Available in the Registration Team Confirmation emails.
Create_Account_Link
Returns a link for a donor to create an account. Available in donation emails. Use an if tag to include the link only when it is applicable to the donor:
{% if Create_Account_Link %}
Would you like to view and manage your donation history?
<a href="{{Create_Account_Link}}">Click here to create your account.</a>
{% endif %}
If the donor can create an account, the output will be a link for them to create their account. Otherwise, this entire section will be omitted from the confirmation email.
Confirm_Reg_Link
Returns a link for a user who was invited to a team through the Fundraiser Dashboard to register to join that team. Available in the User to User Registration Invite email.
Confirm_Registration_Link
Returns a link for a fundraiser invited by a registrant through the Role Registration Flow to confirm their registration and activate their page. Clicking this link converts their fundraising page from a state of "Pending" to "Active". Available in the Registration Invite email.
Recommitment_Link
Returns a link to a recommitment form where fundraisers can submit their credit card to be held for a recommitment charge. Available in the Recommitment Request and Charge Failed emails.
Reset_Password_Link
Returns a link for the user to reset their password. Available in Registration and Reset Password emails.
Verify_Email_Link
Returns a link for a user to verify their email, which gives the user access to the Payments tab in their profile section and the Email tab in the Fundraiser Dashboard. Available in Verify Email emails.
Fundraiser_PDF_Link
Returns a link to a user's dynamic fundraiser PDF. Available in the Fundraiser Dashboard.
Total_Eligible_Amount
Returns the tax deductible amount for a given transaction. Available in transaction emails and PDF receipt.
Total_Eligible_Amount_Without_Fees
Returns the tax deductible amount for a given transaction, minus the amount the donor covered for processing fees on donations. Available in transaction emails and PDF receipt.
Attendee_Count
Returns the number of attendees registered in a given registration transaction. Available in Detailed Registration Confirmation and RSVP Confirmation emails.
Attendees_Total
Returns the total cost of all registrants in a given registration transaction. Available in Detailed Registration Confirmation and RSVP Confirmation emails. Use a money filter to return the value in a monetary format:
{{ Attendees_Total | money }}
$126
Coupon_Code
Returns the coupon/discount code used in a given transaction.
"now"
Returns the current date. Use a date filter to return the value in a recognized format:
{{ "now" | date: "%B %d, %Y" }}
January 1, 2019
Registered_Via_Social
Checks if a registrant registered via social sign on. Available in registration confirmation emails. Use with an if tag to differentiate content for this registrant.
{% if Registered_Via_Social %}
Thank you for connecting your social account!
{% endif %}
If the registrant registered via social sign on, the output will be:
Thank you for connecting your social account!
User_Personal_Message
Returns the message entered by the user in user-to-user emails. Available in User to Donor Thank You and User to User Registration Invite emails. This placeholder must be present in said emails. If it isn't, users will not be able to send these emails through their Fundraiser Dashboard.