Improvements

1. When making Assignment Updates a notice will be made that shows the update has been logged. There is NO way to change this once submitted:

2. A new campaign type.

  • Mass emails are sent to all targets regardless of their opt-out status.

  • Opt-out link is not included.

  • Tracking URLs do not function.

  • Open tracking does not function.

3. Formula: Array appending with [] syntax

  • Applicable only for variables.

$list = list();
$list[] = 'a';

4. Formula: Return the last expression

  • The last evaluated expression to be returned.

Example:

$a = 1;
$b = $a + 1;
$b;
  • This script is treated as an expression and the value of the variable $b is returned.

  • Can be useful when Formula is used to evaluate a condition or determine a value.