def send_fb_msg(email, password, game_title, sale_price):
    """
    Log into Facebook and sends the user a message to notify 
    if game price is currently reduced.
    """
    # Log the user in on Facebook
    client = Client(EMAIL, PASSWORD)

    if not client.isLoggedIn():
        client.loginClient(EMAIL, PASSWORD)

    # Send a message to user
    msg = "The game " + game_title + " is currently on sale for " + sale_price
    client.send(Message(text=msg),
                thread_id=client.uid,
                thread_type=ThreadType.USER)

    # Log the user out
    client.logout()