Track page views

When you install Sendinblue Tracker on your website using, by default we already take care of tracking the page views. However, sometimes it can be useful to track virtual page views if the page doesn't really change (multi-steps form completion, modals etc.). For such cases, you can always fire the page view events yourself.

sendinblue.page(
    page_name, /*mandatory*/
    properties /*optional*/
)
  • page_name: the name of your page
  • properties: is a JSON object where you can pass any properties that describe the context of the page (ex. page title) or your visitor's state (ex. first name, last name, age, etc.)

πŸ“˜

Reserved keywords

In addition to any key-value pair, you can pass four reserved keywords beginning with the prefix ma_ in the properties object:

  • ma_url: the full URL of the page, including the scheme
  • ma_path: the path of the page, i.e. the url without the scheme, the domain, the query string or the fragments
  • ma_title: the title of the page
  • ma_referrer: the referrer of the page

If any of this parameter is not provided then the value will be taken from the current page.

Example:

var page_name = 'homepage'

var properties = {
'ma_title' : 'My Home Page',
'ma_url' : 'http://www.example.com/home',
'ma_path' : '/home'
}

sendinblue.page(page_name, properties)