Versions Compared

Key

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

...

  1. Click on the Reports tab

  2. Select a report that gets you closest to the list that you want to email

    • If there is not a sufficient report, you can create a custom report that gets you the account data set that more closely resembles the customers or accounts you need to send the messages too, you would then use the filter and follow the instructions below same as with the stock reports

  3. Further refine the list by using the 'View' link to filter down to the exact accounts required (this can be based on user name specifically, or possibly bill group, or roles). As shown below, there are 3 saved views, one that returns all customers in the organization that should receive a newsletter, one that will email 3 users for testing, and  one that returns the full  list of employees in the organization

    Image RemovedImage Added

  4. Once the view is saved, click on it to filter the report

  5. Verify that the users now showing in the report are the correct recipients of the message

  6. Click 'Email' in the top right corner

  7. Select the email message from the drop down list

  8. Click Email. The system will begin to send emails and the interface will stop loading when its completed the send email process

...

The tokens available are below, if you are looking for any other tokens, please contact LogiSense Customer Care

LogiSense Support  

email: support@logisense.com

phone (Canada): 1-519-249-0508 •

phone (USA): 1-917-410-3584

Note: you cannot use tokens (user, contact or contactpoint) in the email message body if you are sending the email message to multiple recipients (see the Adding Carbon Copy (Cc) Recipients section for more information on how Carbon Copy functionality is configured).

These work in the Custom Email Body on Invoice Configuration edit screen as well as in the Email Subject text box on the same.

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()

Invoice Name

$Invoice.Name

Invoice Date

$Invoice.Date

Creating Custom Email Tokens

...