def send(email):
    mail = Mail(email['user'], email['password'])
    mail.subject = 'Feeds from ' + time.strftime('%Y-%m-%d') + '.html'
    mail.add_recipient(email['kindle'])
    mail.attach_file(OUTPUT, rename=mail.subject)
    mail.send()