Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Value

Token

Username

$User.Name

Password

$User.Password

First Name

$Contact.FirstName

Last Name

$Contact.LastName

Company

$Contact.Company

Today's Date (short)

$Now.ToString("d") - date only, no time

Today's Date (long)

$Now.ToString("D") - date including time

Add 15 days to today's date

$Now.AddDays(15)
To format it, you can append the ToString component: $Now.AddDays(15).ToString("d") << this displays just the date without time

E-mail Address

$ContactPoint.Value

Current Time

$Now.ToString("t")

Default Payment Type

$User.GetUserDefaultPaymentMethod().GetUserPaymentMethod().GetPaymentType().Name

Balance

 $User$User.GetUserBalance($User.ID)

Full Balance

 $User$User.GetUserBalanceFuture($User.ID)

Overdue Balance

 $User$User.GetOverdueBalance()

Creating Custom Email Tokens

...