Basic automation for notification not working

Hello,
I am new to Home Assistant but am very excited. I am getting my configuration.yaml file setup and testing some automation to make sure I understand the basics. I am using the example found on this site to notify me (Pushbullet) it is lunch time at a certain time.

In my Home Assistant dashboard or UI, in the Logbook page, I see the item is triggered at the right time but I never receive a notification. The problem is I am unsure of how/where I am to be notified. Will it be in the Pushbullet website, the mobile app, the UI?

Also, just a side note. In the developer area of the UI I have an error of “Found unfinished sessions”.

Below is my very basic configuration file so far.

homeassistant:
  # Name of the location where Home Assistant is running
  name: Home Q
  # Location required to calculate the time the sun rises and sets
  latitude: ********
  longitude: ********
  # C for Celsius, F for Fahrenheit
  temperature_unit: F
# Pick yours from here: http://en.wikipedia.org/wiki/List_of_tz_database_time_zones
  time_zone: ********

# Checks for available updates
updater:

# Discover some devices automatically
discovery:

# Enables support for tracking state changes over time.
history:

# Prediction of weather
#sensor:
#   platform: yr

## Show links to resources in log and frontend
#introduction: 

# Track the sun
sun:

http:
  api_password: ********
  # Set to 1 to enable development mode
  # development: 1

# Example configuration.yaml entry
device_tracker:
  platform: icloud
  username: ********
  password: ********

notify:
  platform: pushbullet
  api_key: ********


# Enables the frontend
frontend:

# Allows you to issue voice commands from the frontend
conversation:

# View all events in a logbook
logbook:

sensor 1:
  name: forecateio
  platform: forecast
  api_key: ********
  monitored_conditions:
    - summary
    - icon
    - precip_type
    - precip_probability
    - temperature
    - apparent_temperature


automation:
  - alias: Send message at given time
    trigger:
      platform: time
      hours: 12
      minutes: 00
      seconds: 00
    action:
      service: notify.pushbullet
      data:
        message: 'time for lunch'

Not sure if it matters but my setup looks like this:

notify:
platform: pushbullet
api_key: xxxxxx . . . .
name: mypushbullet

and my action looks like this:

action:
service: notify.mypushbullet
data:
title: “Hallway Smoke Detector Battery Low”

I receive notification through the pushbullet chrome extention and on my phone through the mobile app.

Hey, thanks! I added the name to the notify component and it worked! Thanks so much.